mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +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;
|
||
|
}
|