// FLOW: OUT class A { operator fun plus(n: Int) = this } fun test() { val x = A() + 2 }