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