2f3293f99e
A new resolution diagnostic UnsuccessfulCallableReferenceAtom is introduced that is used in EagerResolveOfCallableReferences. No diagnostic is reported on unresolved calls with this diagnostic because #KT-59856
10 lines
191 B
Kotlin
Vendored
10 lines
191 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
fun <T> g(x: T) = 1
|
|
fun h(x: () -> Unit) = 1
|
|
|
|
fun foo() {
|
|
<!UNRESOLVED_REFERENCE!>f<!>(::<!SYNTAX!><!>)
|
|
g(::<!SYNTAX!><!>)
|
|
h(::<!SYNTAX!><!>)
|
|
}
|