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

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