mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
9 lines
144 B
Plaintext
9 lines
144 B
Plaintext
macro test1(...) {}
|
|
macro test(...) => test1(...args); // #error: 'args' could not be found
|
|
|
|
fn int main(String[] args)
|
|
{
|
|
test();
|
|
return 0;
|
|
}
|