fun test() { class Test{ fun get(a: Int = 0, b: Int = 1, c: Int = 2, d: Int = 3) : Int = 0 } val test = Test() test.get(1, c=3, b=2) }