Files
kotlin-fork/js/js.translator/testFiles/simple/cases/doWhile2.kt
T
2012-02-27 21:55:58 +04:00

14 lines
159 B
Kotlin

package foo
fun box() : Boolean {
var x = 2;
do {
x = 1;
} while(3 < 2)
if (x == 1) {
return true;
}
return false;
}