7ee125e1ad
#KT-36905 Fixed
11 lines
238 B
Kotlin
Vendored
11 lines
238 B
Kotlin
Vendored
//KT-591 Unresolved label in valid code
|
|
|
|
fun test() {
|
|
val a: (Int?).() -> Unit = a@{
|
|
if (this != null) {
|
|
val b: String.() -> Unit = {
|
|
this@a.times(5) // a@ Unresolved
|
|
}
|
|
}
|
|
}
|
|
} |