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

10 lines
132 B
Kotlin
Vendored

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