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