mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
13 lines
229 B
C
13 lines
229 B
C
/* pr #1189 - Fixed compiler CHECK failure when calling functions defined with duplicate param names */
|
|
|
|
void f(int a, int a)
|
|
{
|
|
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
f(0, 1); /* Check failed: (Param->Flags & SC_PARAM) != 0 */
|
|
return 0;
|
|
}
|