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

7 lines
119 B
Kotlin
Vendored

fun Any.foo1() : (i : Int) -> Unit {
return {}
}
fun test(a : Any) {
a.<!INAPPLICABLE_CANDIDATE!>foo1<!>()()
}