Files
kotlin/compiler/testData/codegen/box/controlStructures/kt9022Throw.kt
2016-11-09 21:41:12 +03:00

12 lines
274 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
fun box(): String {
var cycle = true;
while (true) {
if (true || throw java.lang.RuntimeException()) {
return "OK"
}
}
return "fail"
}