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

16 lines
220 B
Kotlin
Vendored

// TYPE: 'n'
// OUT_OF_CODE_BLOCK: FALSE
fun println(s: String) {
}
class InSecondaryConstructor {
init {
println("Init block")
}
constructor(i: Int) {
printl<caret>("Constructor")
}
}