// PROBLEM: none // ERROR: 'operator' modifier is inapplicable on this function: must have a single value parameter fun test() { class Test{ operator fun plus(a: Int=1, b: Int=2) : Int = 0 } val test = Test() test.plus(b=3) }