``` fn foo(x: ..int): [2]int { return {1, 2} } fn main() { foo(1) // OK foo() // Error: Too few actual parameters to fn ([]int): [2]int } ```