e66f1c2d70
#KT-9981 Fixed
12 lines
187 B
Kotlin
Vendored
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()
|
|
} |