1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-02 04:41:35 +00:00
cc65/test/err/bug1143err.c

12 lines
230 B
C
Raw Normal View History

2020-08-17 22:40:29 +00:00
/* bug #1143 - Multiple storage class specifiers in one declaration? */
static static void* y[1]; /* warning */
extern static int a; /* error */
extern typedef int A; /* error */
int main(void)
{
return 0;
}