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

     1  /* Test whether tree inlining works with prototyped nested functions.  */
     2  
     3  extern void foo (char *x);
     4  void bar (void);
     5  void bar (void)
     6  {
     7    auto void baz (void);
     8    void baz (void)
     9      {
    10        char tmp[2];
    11        foo (tmp);
    12      }
    13    baz ();
    14  }