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

8 lines
195 B
Kotlin
Vendored

// "Create label foo@" "false"
// ACTION: Convert to expression body
// ERROR: The label '@foo' does not denote a loop
// ERROR: Unresolved reference: @foo
fun test() {
continue@<caret>foo
}