Files
c3c/test/test_suite/attributes/call_attribute_parse.c3
2025-05-17 22:10:03 +02:00

12 lines
184 B
Plaintext

module test;
fn VoidFn foo()
{
return fn void() {};
}
fn void main()
{
foo() @inline ();
foo() @inline (foo()); // #error: This argument would exceed the number of parameters
}