Files
c3c/test/test_suite/functions/splat_arg_fail.c3

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;
}