12 lines
323 B
Kotlin
Vendored
12 lines
323 B
Kotlin
Vendored
class A {
|
|
operator fun get(x: Int): Int = x
|
|
fun set(x: Int, y: Int) {} // no `operator` modifier
|
|
}
|
|
|
|
fun main() {
|
|
val a = A()
|
|
<!OPERATOR_MODIFIER_REQUIRED!>a<!NO_SET_METHOD!>[1]<!><!>++
|
|
<!OPERATOR_MODIFIER_REQUIRED!>a<!NO_SET_METHOD!>[1]<!><!> += 3
|
|
<!OPERATOR_MODIFIER_REQUIRED!>a[1]<!> = a[1] + 3
|
|
}
|