Files
kotlin-fork/idea/testData/quickfix/when/continueInWhenWithLabel.kt.after
T
2021-05-11 21:42:45 +02:00

22 lines
463 B
Plaintext
Vendored

// "Add label to loop" "true"
// LANGUAGE_VERSION: 1.3
fun breakContinueInWhen(i: Int) {
loop@ for (x in 0..10) {
loop1@ for (y in 0..10) {
when(i) {
0 -> co<caret>ntinue@loop1
2 -> {
for(z in 0..10) {
break
}
for(w in 0..10) {
continue
}
}
}
}
}
}
/* IGNORE_FIR */