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

10 lines
140 B
Kotlin

fun box(): String {
var x = "OK"
do {
while (true) {
x = x + break
}
} while (false)
return x
}