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

10 lines
437 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.