1 2 3 4 5 6 7 8 9 10 11 12
// { 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 } };