Files
kotlin/compiler/testData/codegen/box/controlStructures/breakInFinally.kt

11 lines
155 B
Kotlin
Vendored

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