Files
kotlin-fork/compiler/testData/diagnostics/tests/labels/kt4247.kt
T
2015-10-14 20:39:35 +03:00

11 lines
152 B
Kotlin
Vendored

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