mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
12 lines
274 B
Kotlin
Vendored
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"
|
|
} |