Files
kotlin-fork/compiler/testData/diagnostics/tests/controlStructures/kt10322.fir.kt
T

11 lines
126 B
Kotlin
Vendored

fun test1() {
run {
if (true) {
if (true) {}
}
else {
1
}
}
}