(root)/
gcc-13.2.0/
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  }