blob: bfcafd5dbba0912bf5444ab313f838b49470c125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* { dg-do link } */
/* { dg-options "-std=c99 -pedantic-errors" } */
/* { dg-additional-sources inline-32a.c } */
inline int f (void) { return 0; }
int
main (void)
{
extern int f();
return f ();
}
|