FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / compndlit-1.c
blob4a8488d0ab466c70a14c433ac1c31c8912a75891
1 struct S
3 int a:3;
4 unsigned b:1, c:28;
5 };
7 struct S x = {1, 1, 1};
9 main ()
11 x = (struct S) {b:0, a:0, c:({ struct S o = x; o.a == 1 ? 10 : 20;})};
12 if (x.c != 10)
13 abort ();
14 exit (0);