Files
kotlin-fork/compiler/testData/diagnostics/tests/labels/kt4247.fir.kt
T

11 lines
206 B
Kotlin
Vendored

//KT-4247 LABEL_NAME_CLASH
fun foo(bar1: (String.() -> Int) -> Int) {
bar1 {
this.<!UNRESOLVED_REFERENCE!>length<!>
}
bar1 {
this@bar1.<!UNRESOLVED_REFERENCE!>length<!>
}
}