Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/breakInFinally.kt
T
2018-06-09 19:15:38 +03:00

12 lines
180 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
fun box(): String {
while (true) {
try {
continue;
}
finally {
break;
}
}
return "OK"
}