// "Create member function 'A.set'" "true" class A { operator fun get(s: String): Int = 1 operator fun set(s: String, value: Int) { TODO("Not yet implemented") } } fun foo() { var a = A() a["1"]++ }