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

9 lines
162 B
Kotlin
Vendored

// IS_APPLICABLE: false
interface C {
operator fun get(p: String): Int
operator fun set(p: String, value: Int)
}
fun foo(c: C) {
c<caret>[""] += 10
}