15 lines
237 B
Kotlin
Vendored
15 lines
237 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
// KT-12799 Bound callable references not resolved for overload
|
|
|
|
class C {
|
|
fun xf1(){}
|
|
fun xf1(s: String){}
|
|
}
|
|
|
|
fun foo(p: (String) -> Unit){}
|
|
|
|
fun bar(c: C) {
|
|
foo(c::xf1)
|
|
}
|