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

7 lines
109 B
Plaintext
Vendored

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