Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / valdiag / tests / structflexiblearray.c
blob9f1c8e3db054670a4ce00593fcf12e94523ca1d7
2 #ifdef TEST1
3 struct tag {
4 int good1;
5 int flex[]; /* ERROR */
6 int good2;
7 } badstruct;
8 #endif
10 #ifdef TEST2
11 struct tag {
12 int flex[]; /* ERROR */
13 } badstruct;
14 #endif
16 #ifdef TEST3
17 struct tag {
18 int good1;
19 struct tag2 {
20 int good2;
21 int flex[];
22 } nestedstruct; /* ERROR(SDCC) */
23 } badstruct;
24 #endif