FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / struct-ini-4.c
blob3342439e54d26d456828d65e6045075a7860f553
1 struct s {
2 int a[3];
3 int c[3];
4 };
6 struct s s = {
7 c: {1, 2, 3}
8 };
10 main()
12 if (s.c[0] != 1)
13 abort ();
14 exit (0);