// FIR_IDENTICAL class A { operator fun plusAssign(s: String) {} } fun test() { var a: A? = A() a += "" } class B { operator fun plus(other: B) = this } fun test2() { var b: B? = B() b += B() }