Files
kotlin/compiler/testData/codegen/box/controlStructures/doWhile.kt
2015-10-14 20:39:35 +03:00

16 lines
307 B
Kotlin
Vendored

fun box(): String {
var x = 0
do x++ while (x < 5)
if (x != 5) return "Fail 1 $x"
var y = 0
do { y++ } while (y < 5)
if (y != 5) return "Fail 2 $y"
var z = ""
do { z += z.length } while (z.length < 5)
if (z != "01234") return "Fail 3 $z"
return "OK"
}