Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
varargs
/
AmbiguousVararg.kt
blob: e00aaa4e5621f01445d50842134558794fe278ec [
file
]
// FIR_IDENTICAL
// RENDER_DIAGNOSTICS_FULL_TEXT
fun foo
(
vararg t
:
String
)
=
""
fun foo
(
vararg t
:
Int
)
=
""
fun test
()
{
<!
OVERLOAD_RESOLUTION_AMBIGUITY
!>
foo
<!>()
}