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<!>
}
}