1 extern void f (char*);
2 
3 extern const char * const target = "foo";
4 
g()5 void g ()
6 {
7   f (target); // { dg-error "conversion" }
8 }
9