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

8 lines
123 B
Kotlin
Vendored

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