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

     1  /* PR tree-optimization/49768 */
     2  
     3  extern void abort (void);
     4  
     5  int
     6  main ()
     7  {
     8    static struct { unsigned int : 1; unsigned int s : 1; } s = { .s = 1 };
     9    if (s.s != 1)
    10      abort ();
    11    return 0;
    12  }