1// { dg-do assemble  }
2
3static inline void strlen (const char *) { }
4
5void f ()
6{
7  strlen("Hi");			// { dg-bogus "" } wrongful overload
8}
9