Files
cc65/test/misc/int-static-1888.c
2022-11-03 18:03:47 +01:00

11 lines
196 B
C

/* bug #1888 - The compiler doesn't accept valid data declarations */
/* The following is a valid declaration but not accepted by the compiler */
int static a;
int main(void)
{
return 0;
}