Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/localFunctionInsideIfBlock.fir.kt
T

11 lines
111 B
Kotlin
Vendored

// !LANGUAGE: +NewInference
fun bar() {
if (true) {
fun local() {
}
} else {
}
}