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

     1  struct foo
     2  {
     3    char a;
     4  };
     5  
     6  foo ()
     7  {
     8    struct foo bar[3];
     9    bar[0].a = '0';
    10    bar[1].a = '1';
    11    bar[2].a = '2';
    12    foof (bar);
    13  }