300e0acd27
#KT-13340 Fixed
11 lines
298 B
Kotlin
Vendored
11 lines
298 B
Kotlin
Vendored
fun nonlocals(b : Boolean) {
|
|
a@<!UNUSED_LAMBDA_EXPRESSION!>{
|
|
fun foo() {
|
|
if (b) {
|
|
<!RETURN_NOT_ALLOWED!>return@a<!> 1 // The label must be resolved, but an error should be reported for a non-local return
|
|
}
|
|
}
|
|
|
|
return@a 5
|
|
}<!>
|
|
} |