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;
})
);
}