Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inference
/
cannotCompleteResolveAmbiguity.kt
blob: e87f0f53b29c5a196fd1dbe25fa3f27fa34bd548 [
file
]
// FIR_IDENTICAL
package
f
fun
<
T
>
g
(
i
:
Int
,
a
:
Any
):
List
<
T
>
{
throw
Exception
()}
fun
<
T
>
g
(
a
:
Any
,
i
:
Int
):
Collection
<
T
>
{
throw
Exception
()}
fun
<
T
>
test
()
{
val c
:
List
<
T
>
=
<!
OVERLOAD_RESOLUTION_AMBIGUITY
!>
g
<!>(
1
,
1
)
}