7 lines
120 B
Kotlin
Vendored
7 lines
120 B
Kotlin
Vendored
class C {
|
|
operator fun set(a: Int, b: String, value: Boolean) {}
|
|
}
|
|
|
|
fun call(c: C) {
|
|
<expr>c[1]</expr> = false
|
|
} |