1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-05 09:57:05 +00:00
cc65/test/misc/int-static-1888.c

11 lines
196 B
C
Raw Normal View History

2022-11-03 17:03:47 +00:00
/* 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;
}