Files
kotlin-fork/idea/testData/inspectionsLocal/conventionNameCalls/replaceGetOrSet/set2.kt
T
2017-12-26 18:39:47 +03:00

12 lines
213 B
Kotlin
Vendored

// FIX: 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)
}
}