Files
T
2020-03-19 09:51:01 +03:00

11 lines
120 B
Kotlin
Vendored

class C {
fun xf1(){}
fun xf1(s: String){}
}
fun foo(p: (String) -> Unit){}
fun bar(c: C) {
foo(c::xf1)
}