blob: 281f399cafe46d9f3b989c111cefa3b353a694e9 [file]
fun box(): String {
var cycle = true;
while (true) {
if (true || throw RuntimeException()) {
return "OK"
}
}
return "fail"
}