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

10 lines
136 B
Kotlin
Vendored

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