9 lines
182 B
Kotlin
Vendored
9 lines
182 B
Kotlin
Vendored
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>) {
|
|
<!INAPPLICABLE_CANDIDATE!>f<!>(1, "", l)
|
|
}
|