2 /* Contributed by Volker Reichelt. */
4 /* Verify that GCC doesn't get confused by the
5 redefinition of an extern inline function. */
7 /* { dg-options "-fgnu89-inline" } */
9 extern int inline foo () { return 0; }
10 extern int inline bar () { return 0; }
11 static int bar () { return foo(); }