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

11 lines
100 B
Kotlin
Vendored

// FIR_IDENTICAL
fun bar() {
if (true) {
fun local() {
}
} else {
}
}