Files
kotlin/compiler/testData/codegen/box/controlStructures/breakInFinally.kt
2018-06-19 17:09:31 +03:00

11 lines
155 B
Kotlin
Vendored

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