2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 931018-1.c
blob7efe40ec0947a2b98cce59ca6483c6821e7cc6df
1 typedef struct
3 int a, b;
4 } T;
6 f (T *bs)
8 long long x;
9 x = ({
10 union { T s; long long l; } u;
11 u.s = *bs;
12 u.l;
13 });