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

9 lines
178 B
Kotlin
Vendored

fun box(): String {
var cycle = true;
while (true) {
if (true || throw java.lang.RuntimeException()) {
return "OK"
}
}
return "fail"
}