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
/
0017-struct.c
blob
d74481bf52ca8287f3469d69a251a316da52e184
1
2
3
int
4
main
()
5
{
6
struct
{
int
x
;
int
y
; }
s
;
7
8
s
.
x
=
3
;
9
s
.
y
=
5
;
10
return
s
.
y
-
s
.
x
-
2
;
11
}