Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / valdiag / tests / bug-3464.c
blob4043fa9a3df51b0bbd9e95db930e01a671a81b41
1 /* bug-3464.c
3 Missing diagnostic on multiple storgae class specifiers if one of them was auto on a declaration at block scope.
4 */
6 #ifdef TEST1
7 void g(void)
9 static auto int i; /* ERROR */
10 auto static int j; /* ERROR */
12 #endif