Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
incompleteCode
/
unresolvedArguments.kt
blob: d0ce762d0c9c8a523e9a010d2d004bc4f1c32c6f [
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
<!>)
}