Files
kotlin/compiler/testData/diagnostics/tests/inference/localFunctionInsideIfBlock.kt
Dmitriy Novozhilov f186c83b15 KT-25383 fix
2019-02-21 12:04:23 +03:00

11 lines
111 B
Kotlin
Vendored

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