Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / overload20.C
blobf5db6a20fce618a3ed71c375066f5259ccef9504
1 // { dg-do assemble  }
2 // Bug: this code causes an internal compiler error 4.
4 void f (char *);
5 void f (int);
6 struct A {
7   void f ();                    // { dg-error "" } candidate
8   void f (int);                 // { dg-error "" } candidate
9   void g () {
10     void (*p)(char *) = f;      // { dg-error "" } no matching function in scope
11   }