// PROBLEM: none class Test(val test: Int) { fun foo() = test } // Receiver unused but still inapplicable (operator!) operator fun Test.invoke(x: Int, y: Int) = Test(x + y) fun main(args: Array) { val x = Test(0)(1, 2) x.foo() }