modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/960326-1.c (about)

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