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