// INTENTION_TEXT: Replace with '+' operator fun test() { class Test { fun plus(a: Int): Test = Test() } val test = Test() test.plus(1) }