Files
kotlin/idea/testData/codeInsight/outOfBlock/FunInInitBlock.kt

9 lines
85 B
Kotlin
Vendored

// TRUE
class A {
init {
fun f() {
<caret>
}
}
}