Files
kotlin/idea/testData/codeInsight/outOfBlock/LocalFunWithBodyInClass.kt
2019-11-27 13:43:10 +01:00

9 lines
152 B
Kotlin
Vendored

// OUT_OF_CODE_BLOCK: FALSE
// ERROR: Unresolved reference: a
class LocalFunWithBodyInClass {
fun test() {
fun hello() {
<caret>
}
}
}