Files
kotlin-fork/backend.native/tests/external/codegen/box/controlStructures/breakContinueInExpressions/continueInDoWhile.kt
T
2017-03-13 15:31:46 +03:00

6 lines
84 B
Kotlin

fun box(): String {
var i = 0
do continue while (i++ < 3)
return "OK"
}