311860699e
#KT-36262
8 lines
168 B
Kotlin
Vendored
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()
|
|
} |