(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
20030718-1.c
       1  /* PR c/10320
       2     The function temp was not being emitted in a prerelease of 3.4 20030406. 
       3     Contributed by pinskia@physics.uc.edu */
       4  
       5  static inline void temp();
       6  int main()
       7  {
       8          temp();
       9          return 0;
      10  }
      11  static void temp(){}
      12  
      13