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

     1  /* PR tree-optimization/82388 */
     2  
     3  struct A { int b; int c; int d; } e;
     4  
     5  struct A
     6  foo (void)
     7  {
     8    struct A h[30] = {{0,0,0}};
     9    return h[29]; 
    10  }
    11  
    12  int
    13  main ()
    14  {
    15    e = foo ();
    16    return e.b; 
    17  }