Files
kotlin-fork/idea/testData/intentions/operatorToFunction/assignment.kt.after
T
Valentin Kipyatkov 311bd5f25d One more test added
2015-10-22 18:48:16 +03:00

10 lines
132 B
Plaintext
Vendored

interface C {
operator fun set(p: String, value: Int)
}
class D(val c: C) {
fun foo() {
this.c.set("", 10)
}
}