(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
inline7.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-std=gnu89" } */
       3  extern inline void func1 (void) {
       4    static int i;  /* { dg-warning "static" } */
       5  }
       6  inline void func3 (void) 
       7  {
       8    static int i;
       9  }