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

12 lines
185 B
Kotlin
Vendored

// PROBLEM: none
class C {
operator fun set(s: String, value: Int): Boolean = true
}
class D(val c: C) {
fun foo(): Boolean {
return this.c.<caret>set("x", 1)
}
}