Files
c3c/test/test_suite2/functions/macro_arguments.c3

12 lines
509 B
C

fn void foo1(int #foo) { } // #error: Only regular parameters are allowed for functions.
fn void foo2(int $foo) { } // #error: Only regular parameters are allowed for functions.
fn void foo3(bar) { } // #error: Only typed parameters are allowed for functions
fn void foo4($Type) { } // #error: Only regular parameters are allowed for functions.
fn void foo8(int &foo) {} // #error: Only regular parameters are allowed for functions.
fn void foo9(int x, int x) {} // #error: Duplicate parameter name 'x'.