Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
incompleteCode
/
unresolvedArguments.kt
blob: 931067981c3094e0389db8989bccfddf64a6809e [
file
]
// DIAGNOSTICS: -UNUSED_PARAMETER
fun
<
T
>
foo
(
i
:
Int
,
t
:
T
)
{}
fun
<
T
>
foo
(
s
:
String
,
t
:
T
)
{}
fun bar
(
i
:
Int
)
{}
fun bar
(
s
:
String
)
{}
fun test
()
{
foo
(<!
UNRESOLVED_REFERENCE
!>
rrr
<!>,
1
)
bar
(<!
UNRESOLVED_REFERENCE
!>
rrr
<!>)
}