d91000e39c
... instead of just UNRESOLVED_REFERENCE when something went wrong during resolution. #KT-59401 related
16 lines
381 B
Kotlin
Vendored
16 lines
381 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
interface A
|
|
interface B
|
|
|
|
fun fooB(b: B) {}
|
|
|
|
fun <T> bar(f: (T) -> Unit, e: T) {}
|
|
fun <T> baz(e: T, f: (T) -> Unit) {}
|
|
|
|
fun test(a: A, b: B) {
|
|
// Note that diagnostic is always on callable references as they are resolved after simple arguments
|
|
baz(a, ::<!INAPPLICABLE_CANDIDATE!>fooB<!>)
|
|
bar(::<!INAPPLICABLE_CANDIDATE!>fooB<!>, a)
|
|
}
|