mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
21 lines
342 B
C
21 lines
342 B
C
|
/*
|
||
|
!!DESCRIPTION!! global non-static and static conflicts
|
||
|
!!ORIGIN!! cc65 regression tests
|
||
|
!!LICENCE!! Public Domain
|
||
|
!!AUTHOR!! Greg King
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
see: https://github.com/cc65/cc65/issues/191
|
||
|
*/
|
||
|
|
||
|
#pragma warn(error, on)
|
||
|
|
||
|
static int n;
|
||
|
int n; /* should give an error */
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
return n;
|
||
|
}
|