Files
kotlin-fork/idea/testData/quickfix/removeRedundantLabel/simple2.kt
T
2019-10-02 16:40:13 +07:00

6 lines
95 B
Kotlin
Vendored

// "Remove redundant label" "true"
fun foo() {
L1@ val x = L2@<caret> bar()
}
fun bar() {}