blob: 16cd590857303f1535fc8554c37d060f1f0e5de7 [file] [log] [blame]
union u { union u *a; double d; };
union u *s, g();
void
f(void)
{
union u x = g();
s[0] = *x.a;
s[1] = g();
}