Files
kotlin-fork/idea/testData/codeInsight/outOfBlock/InitBlockInLocalClass.kt
T
Vladimir Dolzhenko 95129939d4 Add secondary ctors to incremental analysis
#KT-35121 Fixed
2019-11-29 15:45:09 +01:00

15 lines
194 B
Kotlin
Vendored

// OUT_OF_CODE_BLOCK: FALSE
// TYPE: '4'
fun boo() {
class InnerBoo() {
val someValue: Int
init {
someValue = <caret>
}
}
val b = InnerBoo()
}