23ec8f0813
#KT-8855 Fixed
8 lines
195 B
Kotlin
Vendored
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
|
|
} |