blob: f5db6a20fce618a3ed71c375066f5259ccef9504 [file] [log] [blame]
// { dg-do assemble }
// Bug: this code causes an internal compiler error 4.
void f (char *);
void f (int);
struct A {
void f (); // { dg-error "" } candidate
void f (int); // { dg-error "" } candidate
void g () {
void (*p)(char *) = f; // { dg-error "" } no matching function in scope
}
};