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