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

     1  struct a
     2  {
     3    int t;
     4    int t1;
     5  };
     6  
     7  int f(int i, int j)
     8  {
     9    struct a *t;
    10    struct a t1 = {i, j};
    11    t = &t1;
    12    auto int g(void) __attribute__((noinline));
    13    int g(void)
    14    {
    15      return t->t + t->t1;
    16    }
    17    return g();
    18  }