rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr41282.c

21 lines
175 B
C

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