(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
layout.c
       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  }