OSDN Git Service

* g++.dg/init/new1.C, g++.dg/template/alignof1.C,
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20021120-1.c
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 inline bar () { return foo(); }