Files
c3c/test/test_suite/macros/trailing_body_named.c3

9 lines
154 B
Plaintext

macro @foo(; @body(int arg))
{
@body(arg: 0); // #error: Named arguments are not supported for body parameters
}
fn void main()
{
@foo(; int arg) {};
}