Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/operatorCalls/plusAssign.kt.after
T
2015-11-13 14:32:33 +03:00

12 lines
187 B
Plaintext
Vendored

// "Replace with 'add(c)'" "true"
class C
@Deprecated("", ReplaceWith("add(c)"))
operator fun C.plus(c: C) = C()
fun C.add(c: C) = C()
fun f() {
var c1 = C()
c1 = c1.add(C())
}