Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
lookup3.C
blob: a2946b7b07c29ce49fb815c4ff367eda186b8ae6 [
file
] [
log
] [
blame
]
// { dg-do run }
// Test to make sure that the use of __typeof__ in WIFEXITED works.
int
main
()
{
int
stat_loc
=
0
;
(
__extension__
({
union
{
__typeof__
(
stat_loc
)
__in
;
int
__i
;
}
__u
;
__u
.
__in
=
(
stat_loc
);
__u
.
__i
;
})
);
}