OSDN Git Service

2012-01-03 Richard Guenther <rguenther@suse.de>
[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 }