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

11 lines
176 B
Kotlin
Vendored

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