OSDN Git Service

Fix PR42205.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / inline-32.c
1 /* { dg-do link } */
2 /* { dg-options "-std=c99 -pedantic-errors" } */
3 /* { dg-additional-sources inline-32a.c } */
4 inline int f (void) { return 0; }
5
6 int
7 main (void)
8 {
9   extern int f();
10   return f ();
11 }