Files
kotlin/idea/testData/quickfix/createLabel/breakInOuterLoop.kt
2017-01-10 21:16:13 +03:00

9 lines
132 B
Kotlin
Vendored

// "Create label foo@" "true"
fun test() {
while (true) {
while (true) {
break@<caret>foo
}
}
}