aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/noncompile/init-1.c
blob: 52f43e81a4f5cbe074ee83973c8f6ae77f96ad3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
struct a
{ double a, b, c; };

struct b
{
  struct a arr[6];
};

static struct b a_b =
{
  {0,0,0},
  {0,0,0},
  {0,0,0},
  {0,0,0},
  {0,0,0},
  {0,0,0},
};