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

13 lines
256 B
Kotlin
Vendored

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