repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20020920-1.c
blob
4539742dd38d06295e75f2f21565c763c13e777d
1
extern
void
abort
(
void
);
2
extern
void
exit
(
int
);
3
4
struct
B
5
{
6
int
x
;
7
int
y
;
8
};
9
10
struct
A
11
{
12
int
z
;
13
struct
B b
;
14
};
15
16
struct
A
17
f
()
18
{
19
struct
B b
= {
0
,
1
};
20
struct
A a
= {
2
,
b
};
21
return
a
;
22
}
23
24
int
25
main
(
void
)
26
{
27
struct
A a
=
f
();
28
if
(
a
.
z
!=
2
||
a
.
b
.
x
!=
0
||
a
.
b
.
y
!=
1
)
29
abort
();
30
exit
(
0
);
31
}