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