Files
kotlin/compiler/testData/codegen/box/controlStructures/emptyWhile.kt

10 lines
126 B
Kotlin
Vendored

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