testcase related to bug #1888

This commit is contained in:
mrdudz
2022-11-03 18:03:47 +01:00
parent 44b2e4f331
commit cc450706d1
2 changed files with 16 additions and 0 deletions

View File

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