Files
kotlin-fork/idea/testData/inspectionsLocal/redundantLabelMigration/simple2.kt
T
2020-02-10 17:04:06 +07:00

7 lines
119 B
Kotlin
Vendored

// LANGUAGE_VERSION: 1.4
// DISABLE-ERRORS
fun testValLabelInReturn() {
<caret>L@ val fn = { return@L }
fn()
}