Files
kotlin/idea/testData/parameterInfo/arrayAccess/SetTooManyArgs.kt
2015-10-07 23:09:54 +03:00

13 lines
221 B
Kotlin
Vendored

class A {
operator fun get(x: Int) {}
operator fun set(x: String, value: Int) {}
fun d(x: Int) {
this["", 1<caret>] = 1
}
}
/*
Text: (x: String), Disabled: true, Strikeout: false, Green: true
*/