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