mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
7 lines
147 B
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;
|
|
}
|