OSDN Git Service

Fix PR 17408 and PR 17409.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / struct-ini-4.c
1 struct s {
2   int a[3];
3   int c[3];
4 };
5
6 struct s s = {
7   c: {1, 2, 3}
8 };
9
10 main()
11 {
12   if (s.c[0] != 1)
13     abort ();
14   exit (0);
15 }