mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +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;
|
|
}
|