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