One more test added
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
interface C {
|
||||
operator fun set(p: String, value: Int)
|
||||
}
|
||||
|
||||
class D(val c: C) {
|
||||
fun foo() {
|
||||
this.c<caret>[""] = 10
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
interface C {
|
||||
operator fun set(p: String, value: Int)
|
||||
}
|
||||
|
||||
class D(val c: C) {
|
||||
fun foo() {
|
||||
this.c.set("", 10)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user