Files
kotlin-fork/js/js.translator/testData/box/inlineEvaluationOrder/doWhile.kt
T
2016-09-29 12:00:40 +03:00

14 lines
209 B
Kotlin
Vendored

package foo
fun box(): String {
var c = 2
do {
if (c > 4) throw Exception("Timeout!")
c++
} while (buzz(c) < 4)
assertEquals("buzz(3);buzz(4);", pullLog())
return "OK"
}