mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
7 lines
118 B
C
7 lines
118 B
C
fn void foo(int a) {}
|
|
|
|
fn int main()
|
|
{
|
|
foo(10, foo(); // #error: Did you forget a ')' before this
|
|
return 0;
|
|
} |