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