Files
c3c/test/test_suite/functions/unsplat_named.c3
2024-09-05 22:13:22 +02:00

8 lines
98 B
Plaintext

fn void test(int... abc, int a)
{ }
fn void main()
{
int[] b = { 1, 2 };
test(...b, a: 123);
}