2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20021204-1.c
blob4e8d3fefcbb492d91aa622c962b3a8c08da9544e
1 /* PR c/7622 */
3 /* Verify that GCC can handle the mix of
4 extern inline and nested functions. */
6 extern inline int t()
8 int q() { return 0; }
10 return q();
13 int foo()
15 return t();