Files
kotlin-fork/compiler/testData/diagnostics/tests/labels/kt4247.kt
T
Dmitriy Novozhilov 309050d956 [FIR] Add ExtensionFunctionType attribute
#KT-39034 Fixed
2020-06-30 11:30:19 +03:00

12 lines
169 B
Kotlin
Vendored

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