blob: 3a0f02d63ab10219658fbc83e214c4a25c4ddfe5 [file] [log] [blame]
struct S
{
unsigned int iu;
};
union U
{
struct S s;
signed int is;
};
extern signed int bar ();
struct S foo (void)
{
union U u;
u.is = bar ();
return u.s;
}