fun test() { class Test { fun plus(a: Int, b: Int=5): Test = Test() } val test = Test() test.plus(1) }