f283f2db43
Also introduce few new diagnostics: - NONE_APPLICABLE more many inapplicable candidates - HIDDEN for visible candidates
9 lines
175 B
Kotlin
Vendored
9 lines
175 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>) {
|
|
<!NONE_APPLICABLE!>f<!>(1, "", l)
|
|
}
|