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

6 lines
95 B
Kotlin
Vendored

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