mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
9 lines
148 B
C
9 lines
148 B
C
|
/* Bug #2162 - conflicting declarations in functions */
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
static int i = 42;
|
||
|
extern int i; /* Error */
|
||
|
return i;
|
||
|
}
|