modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/struct-ini-4.c (about) 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 }