mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
Converted from the relevant intention Reported cases: one-liners, whens Also, more exact caret detection in local inspection tests
7 lines
157 B
Kotlin
Vendored
7 lines
157 B
Kotlin
Vendored
// "Create label foo@" "false"
|
|
// ERROR: The label '@foo' does not denote a loop
|
|
// ERROR: Unresolved reference: @foo
|
|
|
|
fun test() {
|
|
continue@<caret>foo
|
|
} |