Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inference
/
cannotCompleteResolveNoneApplicable.kt
blob: 1d571e5ff699b1264f6109789c7f44515ed49319 [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
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
)
}