1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00
cc65/test/err/bug2301-trailing-coma-2.c

7 lines
147 B
C

/* Bug #2301 - Function parameter list with an extra trailing comma should not compile */
int bar(a,) int a; /* Should fail */
{
return a;
}