69e5444ddf
#KT-1703 Fixed #KT-361 Fixed #KT-3920 Fixed #KT-3988 Fixed #KT-4247 Fixed #KT-4586 Fixed #KT-4603 Fixed #KT-591 Fixed
11 lines
152 B
Kotlin
11 lines
152 B
Kotlin
//KT-4247 LABEL_NAME_CLASH
|
|
|
|
fun foo(bar1: (String.() -> Int) -> Int) {
|
|
bar1 {
|
|
this.length
|
|
}
|
|
|
|
bar1 {
|
|
this@bar1.length
|
|
}
|
|
} |