mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
12 lines
230 B
C
12 lines
230 B
C
|
|
||
|
/* 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;
|
||
|
}
|