8c1fcddea3
^KT-28109 Fixed
12 lines
162 B
Kotlin
Vendored
12 lines
162 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
class Cell {
|
|
operator fun get(s: Int) = 1
|
|
}
|
|
|
|
fun box(): String {
|
|
val c = Cell()
|
|
(<!UNRESOLVED_REFERENCE!>c[0]<!>)++
|
|
return "OK"
|
|
}
|