Files
kotlin-fork/idea/testData/codeInsight/outOfBlock/InitBlockInObject.kt
T
Vladimir Dolzhenko ddba8e7691 Extend incremental analysis to object declaration
Fixed #KT-37250
2020-03-10 09:08:47 +01:00

8 lines
118 B
Kotlin
Vendored

// OUT_OF_CODE_BLOCK: FALSE
// ERROR: Unresolved reference: call
object Foo {
init {
c<caret>ll()
}
}