17ab005668
This commit also fixes a missing symbol for KtScriptInitializer and some symbol pointers Many tests marked as 'DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE' due to KtFirFileSymbol#createPointer logic – the pointer can be created only for PSI ^KT-61451 ^KT-61887 ^KT-62626 Fixed ^KT-62693
17 lines
134 B
Kotlin
Vendored
17 lines
134 B
Kotlin
Vendored
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE
|
|
|
|
fun foo() {
|
|
|
|
}
|
|
|
|
val b = 42
|
|
|
|
class C {
|
|
fun member() {
|
|
|
|
}
|
|
|
|
val prop = foo()
|
|
}
|
|
|
|
foo() |