Files
kotlin-fork/backend.native/tests/external/codegen/box/controlStructures/emptyWhile.kt
T
2017-03-13 15:31:46 +03:00

10 lines
126 B
Kotlin

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