fun test() { class Test { fun plus(vararg a: Int): Test = Test() } val test = Test() test.plus() }