Files
kotlin-fork/compiler/testData/diagnostics/tests/controlStructures/nestedLoopsWithMultipleLabels.kt
T
vladislav.grechko d27adf6677 [FIR] Forbid multiple labels per statement
^KT-53629: Fixed
2024-01-30 19:58:53 +00:00

11 lines
158 B
Kotlin
Vendored

// K2: See KT-65342
fun test() {
a@ b@ while(true) {
val f = {
<!NOT_A_FUNCTION_LABEL!>return@a<!>
}
break@b
}
}