Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/breakContinueInExpressions/kt9022And.kt
T
2015-11-13 10:14:00 +03:00

9 lines
149 B
Kotlin
Vendored

fun box(): String {
var cycle = true;
while (true) {
if (true && break) {
return "fail"
}
}
return "OK"
}