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

     1  /* PR c/7622 */
     2  
     3  /* Verify that GCC can handle the mix of
     4     extern inline and nested functions. */
     5  
     6  extern inline int t()
     7  {
     8    int q() { return 0; }
     9  
    10    return q();
    11  }
    12  
    13  int foo()
    14  {
    15    return t();
    16  }