Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
checkArguments
/
arrayAccessSetNotEnoughArgs.kt
blob: 09d699cf8c8e5f8ea2955bd4b4c3a802a6c04a4f [
file
]
// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_PARAMETER
class
A
{
operator
fun
set
(
x
:
String
,
y
:
Boolean
,
value
:
Int
)
{}
fun d
(
x
:
Int
)
{
<!
NO_VALUE_FOR_PARAMETER
(
"y"
)!>
this
[
""
]<!>
=
1
}
}