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

11 lines
157 B
Kotlin
Vendored

fun test1() {
run {
if (true) {
<!INVALID_IF_AS_EXPRESSION!>if (true) {}<!>
}
else {
1
}
}
}