blob: 94fb752b60a3f77a50b6d1d9f8a4ffe2ea119db8 [file]
// WITH_STDLIB
class Cell {
operator fun get(s: Int) = 1
}
fun box(): String {
val c = Cell()
(c<!NO_SET_METHOD!>[0]<!>)++
return "OK"
}