Files
kotlin-fork/compiler/testData/diagnostics/tests/labels/kt591.kt
T
2014-10-01 18:52:52 +04:00

11 lines
295 B
Kotlin

//KT-591 Unresolved label in valid code
fun test() {
val <!UNUSED_VARIABLE!>a<!> = @a{(Int?).() ->
if (this != null) {
val <!UNUSED_VARIABLE!>b<!> = {String.() ->
<!DEBUG_INFO_SMARTCAST!>this@a<!>.times(5) // @a Unresolved
}
}
}
}