Files
c3c/test/test_suite/functions/vararg_argument_fails.c3
2021-11-16 17:46:44 +01:00

5 lines
257 B
C

fn void foo5(..., ...) {} // #error: Only a single vararg parameter is allowed
fn void foo6(int ..., int ...) {} // #error: Only a single vararg parameter is allowed
fn void foo7(int... x, int ... y) {} // #error: Only a single vararg parameter is allowed