Files
kotlin-fork/idea/testData/intentions/operatorToFunction/compoundAssignment2.kt.after
T

8 lines
120 B
Plaintext
Vendored

// WITH_RUNTIME
interface C {
operator fun get(p: String): MutableList<Int>
}
fun foo(c: C) {
c.get("") += 10
}