mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
3 lines
253 B
Plaintext
3 lines
253 B
Plaintext
fn void test1(int... x, int) { } // #error: A parameter name was expected
|
|
fn void test2(x..., int) { } // #error: A parameter name was expected
|
|
extern fn void test3(int a, ..., int y); // #error: C-style varargs cannot be followed by regular parameters. |