mirror of
https://github.com/cc65/cc65.git
synced 2024-11-12 07:07:19 +00:00
10 lines
150 B
C
10 lines
150 B
C
|
|
/* bug #1143 - Multiple storage class specifiers in one declaration? */
|
|
|
|
static static void* y[1]; /* warning */
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|