1 /* PR c/8518 */
2 /* Contributed by Volker Reichelt. */
3
4 /* Verify that GCC doesn't get confused by the
5 redefinition of an extern inline function. */
6
7 extern int inline foo () { return 0; }
8 extern int inline bar () { return 0; }
9 static int bar () { return foo(); }
10