blob: ad6ec3cb8bba0189dc5d7d26726030bec79d5562 [file] [log] [blame]
interface C {
operator fun set(p: String, value: Int)
}
class D(val c: C) {
fun foo() {
this.c<caret>[""] = 10
}
}