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

7 lines
103 B
Plaintext
Vendored

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