2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20021123-2.c
blob423f8ec1964b3a4fc0723bac61256f6d8dfad47f
1 /* PR c/8518 */
2 /* Contributed by Volker Reichelt. */
4 /* Verify that GCC doesn't get confused by the
5 redefinition of an extern inline function. */
7 extern int inline foo () { return 0; }
8 extern int inline bar () { return 0; }
9 static int inline bar () { return foo(); }