Fixed support for storage class specifiers after type specifiers.

This commit is contained in:
acqn
2022-11-03 21:46:42 +08:00
parent 991af3755b
commit 8a7f566387
7 changed files with 178 additions and 123 deletions

View File

@@ -1,10 +0,0 @@
/* 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;
}