1 struct s {
2   int a[3];
3   int c[3];
4 };
5 
6 struct s s = {
7   c: {1, 2, 3}
8 };
9 
main()10 main()
11 {
12   if (s.c[0] != 1)
13     abort ();
14   exit (0);
15 }
16