aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/compndlit-1.c
blob: 4a8488d0ab466c70a14c433ac1c31c8912a75891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
struct S
{
  int a:3;
  unsigned b:1, c:28;
};

struct S x = {1, 1, 1};

main ()
{
  x = (struct S) {b:0, a:0, c:({ struct S o = x; o.a == 1 ? 10 : 20;})};
  if (x.c != 10)
    abort ();
  exit (0);
}