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

8 lines
168 B
Kotlin
Vendored

// LANGUAGE_VERSION: 1.4
// PROBLEM: none
// ERROR: Target label does not denote a function
fun testValLabelInReturn() {
L@ val fn = { <caret>return@L }
fn()
}