Files
kotlin/compiler/testData/codegen/box/controlStructures/emptyDoWhile.kt
Alexander Udalov 61ff9eb45b Support codegen of empty do-while-loop
#KT-3009 In Progress
2013-12-04 15:19:56 +04:00

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"
}