Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/kt2597.kt
T
2019-11-19 11:00:09 +03:00

12 lines
161 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
var i = 0
{
if (1 == 1) {
i++
} else {
}
}()
return "OK"
}