Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/breakInFinally.kt
T
2021-09-08 19:56:38 +03:00

12 lines
156 B
Kotlin
Vendored

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