blob: 06a1a8b10967fcfcb44c44a6b61bd5b44646a605 [file]
fun foo() {
outer@while (true) {
try {
while (true) {
<!UNREACHABLE_CODE!>continue@outer<!>
}
} finally {
break
}
}
"OK".hashCode()
}
fun bar(): String {
outer@while (true) {
try {
while (true) {
<!UNREACHABLE_CODE!>continue@outer<!>
}
} finally {
return "OK"
}
}
}