Files
kotlin/compiler/testData/codegen/box/controlStructures/kt9022Throw.kt
2018-12-21 16:09:12 +01:00

10 lines
169 B
Kotlin
Vendored

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