xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/20021204-1.c (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
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 }
17