Files
kotlin-fork/compiler/testData/cfg/controlStructures/breakContinueInTryFinally.kt
T

25 lines
391 B
Kotlin
Vendored

fun foo() {
outer@while (true) {
try {
while (true) {
continue@outer
}
} finally {
break
}
}
println("OK")
}
fun bar(): String {
outer@while (true) {
try {
while (true) {
continue@outer
}
} finally {
return "OK"
}
}
}