1 /* { dg-do compile } */ 2 /* { dg-options "-w -fpermissive" } */ 3 4 int strlen (const char *p); 5 f(char * p)6 int f (char *p) 7 { 8 int x = strlen (p); 9 return x; 10 } 11 12