2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 930603-1.c
blob643cc52d4c2be0c17b6a3a3bf176144c5f78bd23
1 union u { union u *a; double d; };
2 union u *s, g();
4 f()
6 union u x = g();
8 s[0] = *x.a;
9 s[1] = g();