mirror of
https://github.com/cc65/cc65.git
synced 2025-01-01 03:30:20 +00:00
9 lines
138 B
C
9 lines
138 B
C
|
/* Bug #2162 - conflicting declarations in functions */
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
extern int i;
|
||
|
int i = 42; /* Error */
|
||
|
return i;
|
||
|
}
|