OSDN Git Service

PR c/44051
[pf3gnuchains/gcc-fork.git] / 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 }