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