Jenis yang disimpulkan adalah array

fun varargFun(vararg va: Number) {
    val copy = arrayOf(*va)
    arrayFun(copy)
}
Stockholm