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

12 lines
148 B
Kotlin
Vendored

// OUT_OF_CODE_BLOCK: TRUE
// ERROR: Unresolved reference: a
val b = true
fun test() = if (b) {
fun hello() {
<caret>
}
}
else {
}