Files

7 lines
115 B
Kotlin
Vendored

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