Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
checkArguments
/
arrayAccessSetTooManyArgs.fir.kt
blob: 7158ffebbcba0049b569c7b0210e9e5c3c4f1c40 [
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
}
}