Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/kt28109.kt
T
Victor Petukhov 8c1fcddea3 [FE 1.0] Don't miss NO_SET_METHOD checks
^KT-28109 Fixed
2022-03-23 21:13:33 +00:00

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"
}