Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/cannotCompleteResolveNoneApplicable.kt
T

10 lines
192 B
Kotlin
Vendored

// FIR_IDENTICAL
package f
fun <T> f(i: Int, t: T, c: MutableCollection<T>) {}
fun <T> f(a: Any, t: T, l: MutableList<T>) {}
fun test(l: List<Int>) {
<!NONE_APPLICABLE!>f<!>(1, "", l)
}