blob: a7db6ddedd67aa992ed5eeb2e67710ef9992f13e [file] [log] [blame]
/* APPLE LOCAL file for-4_3 4134307 */
/* { dg-do compile } */
/* { dg-options "-std=gnu89" } */
static int i;
extern int j;
extern inline int func1 (void) {
return i++; /* { dg-warning "static" } */
}
extern inline int func2 (void) {
return j++;
}
inline int func3 (void)
{
return i++;
}