Files
c3c/test/test_suite/statements/call_missing_paren.c3
Christoffer Lerno 97ac957cb7 "Public by default"
2021-05-30 16:30:16 +02:00

7 lines
113 B
C

func void foo(int a) {}
func int main()
{
foo(10, foo(); // #error: Expected the ending ')'
return 0;
}