mirror of
https://github.com/cc65/cc65.git
synced 2024-11-05 08:05:51 +00:00
22 lines
405 B
C
22 lines
405 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 = 0;
|
|
extern int n; /* should not give an error */
|
|
static int n; /* should not give an error */
|
|
|
|
int main(void)
|
|
{
|
|
return n;
|
|
}
|