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

7 lines
98 B
Kotlin
Vendored

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