Files
kotlin/idea/testData/codeInsight/outOfBlock/InFunInFunctionInitializerInFun.kt
2019-10-30 21:41:29 +01:00

11 lines
111 B
Kotlin
Vendored

// OUT_OF_CODE_BLOCK: TRUE
val a = 1
fun test() = if (a) {
fun hello() {
<caret>
}
}
else {
}