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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0045-struct.c
blob
418a4a1a43568e4c35233ccfc38332618f851bdf
1
struct
T
;
2
3
struct
T
{
4
int
x
;
5
};
6
7
int
8
main
()
9
{
10
struct
T v
;
11
{
struct
T
{
int
z
; }; }
12
v
.
x
=
2
;
13
if
(
v
.
x
!=
2
)
14
return
1
;
15
return
0
;
16
}