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

12 lines
187 B
Kotlin
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 <caret>+= C()
}