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