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

11 lines
157 B
Kotlin
Vendored

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