repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
valdiag
/
tests
/
structflexiblearray.c
blob
9f1c8e3db054670a4ce00593fcf12e94523ca1d7
1
2
#ifdef TEST1
3
struct
tag
{
4
int
good1
;
5
int
flex
[];
/* ERROR */
6
int
good2
;
7
}
badstruct
;
8
#endif
9
10
#ifdef TEST2
11
struct
tag
{
12
int
flex
[];
/* ERROR */
13
}
badstruct
;
14
#endif
15
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