mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
11 lines
248 B
C
11 lines
248 B
C
/* Bug #2162 - conflicting declarations in functions */
|
|
|
|
static int i;
|
|
|
|
int main(void)
|
|
{
|
|
extern int i; /* cc65 allows this */
|
|
int i = 42; /* Error - if this were accepted, it would be confusing which object i refers to */
|
|
return i;
|
|
}
|