2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / compndlit-1.c
blob76328c21c2e7f072e74724f5906c1a93fb33b864
1 /* The bit-field below would have a problem if __INT_MAX__ is too
2 small. */
3 #if __INT_MAX__ < 2147483647
4 int
5 main (void)
7 exit (0);
9 #else
10 struct S
12 int a:3;
13 unsigned b:1, c:28;
16 struct S x = {1, 1, 1};
18 main ()
20 x = (struct S) {b:0, a:0, c:({ struct S o = x; o.a == 1 ? 10 : 20;})};
21 if (x.c != 10)
22 abort ();
23 exit (0);
25 #endif