Files
kotlin-fork/compiler/testData/diagnostics/tests/varargs/AmbiguousVararg.kt
T

7 lines
123 B
Kotlin
Vendored

fun foo(vararg t : String) = ""
fun foo(vararg t : Int) = ""
fun test() {
<!OVERLOAD_RESOLUTION_AMBIGUITY!>foo<!>()
}