Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceGetOrSet/set2.kt
T
2015-10-30 17:25:34 +03:00

12 lines
224 B
Kotlin
Vendored

// INTENTION_TEXT: Replace 'set' call with indexing operator
class C {
operator fun set(s: String, p: Int, value: Int): Boolean = true
}
class D(val c: C) {
fun foo() {
this.c.<caret>set("x", 2, 1)
}
}