Files
kotlin-fork/compiler/testData/diagnostics/tests/labels/kt361.fir.kt
T

11 lines
242 B
Kotlin
Vendored

fun nonlocals(b : Boolean) {
a@{
fun foo() {
if (b) {
return@a 1 // The label must be resolved, but an error should be reported for a non-local return
}
}
return@a 5
}
}