Files
kotlin/compiler/testData/codegen/box/controlStructures/emptyWhile.kt
2018-06-09 19:15:38 +03:00

11 lines
151 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
fun box(): String {
while (false);
var x = 0
while (x++<5);
if (x != 6) return "Fail: $x"
return "OK"
}