f641466f70
If the function is local, there would be errors related to its unresolved body and receiver type
9 lines
116 B
Kotlin
Vendored
9 lines
116 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
val topLevelVal = ""
|
|
|
|
val otherVal: () -> Unit = {
|
|
val foo = <caret>
|
|
}
|
|
|
|
// EXIST: topLevelVal
|