Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / overload29.C
blobecd43592b08df9b517cce1a4a99c56f9ec89b26b
1 // Bug: we get an error trying to build up our ideal candidate.
2 // Build don't link:
4 class C {
5  public:
6         C( const char * );
7 };
9         extern  const   char    c1[];
11 void f2( const char * );
13 void f1() {
14         C *fntp = new C(c1);                    // Line 10
15         f2( c1 );