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