d886d48cf0
#KT-34282 Fixed
11 lines
277 B
Kotlin
Vendored
11 lines
277 B
Kotlin
Vendored
// !LANGUAGE: +NewInference
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun bar(y: (Int) -> Int) = 1
|
|
fun foo(x: Float) = 10f
|
|
fun foo(x: String) = ""
|
|
|
|
fun main() {
|
|
bar(::<!CALLABLE_REFERENCE_RESOLUTION_AMBIGUITY!>foo<!>) // no report about unresolved callable reference for `foo`
|
|
}
|