Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / valdiag / tests / bug-3801.c
blob15d3dac503cf3b1b8d1b818e50feef3bfc5bcf4c
1 /* bug-3801.c
3 A bug resulting in negative array sizes notbeing diagnosed.
4 */
6 #ifdef TEST1
7 char c[-2]; /* ERROR */
8 #endif
10 #ifdef TEST2
11 void f(void)
13 char c[-2]; /* ERROR */
15 #endif