fun function(vararg a: Int) {} fun call() { val args = intArrayOf(1, 2, 3) function(*args) }