fun test() { class Test { fun invoke(a: Int, vararg b: String) {} } val test = Test() test.invoke(1, "a", "b") }