Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
checkArguments
/
arrayAccessSetTooManyArgs.fir.kt
blob: 4950642fa67aab12762ad337a1e0f012abfe53ab [
file
]
// DIAGNOSTICS: -UNUSED_PARAMETER
class
A
{
operator
fun
get
(
x
:
Int
)
{}
operator
fun
set
(
x
:
String
,
value
:
Int
)
{}
fun d
(
x
:
Int
)
{
this
[
""
,
<!
TOO_MANY_ARGUMENTS
!>
1
<!>]
=
1
}
}