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

6 lines
86 B
Kotlin
Vendored

fun foo(vararg t : String) = ""
fun foo(vararg t : Int) = ""
fun test() {
foo()
}