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

7 lines
95 B
Kotlin
Vendored

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