Files
kotlin-fork/compiler/testData/diagnostics/tests/operatorsOverloading/kt11300.kt
T

14 lines
355 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
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{NI}!>[1]<!><!>++
<!OPERATOR_MODIFIER_REQUIRED!>a<!NO_SET_METHOD{NI}!>[1]<!><!> += 3
<!OPERATOR_MODIFIER_REQUIRED!>a[1]<!> = a[1] + 3
}