Files
kotlin-fork/compiler/testData/diagnostics/tests/controlStructures/kt10322.kt
T
2017-06-22 14:18:11 +03:00

11 lines
157 B
Kotlin
Vendored

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