libstdc++: Add missing constexpr to __atomic_impl::__clear_padding
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / overload29.C
blobabc4418bd03bc9fe0b15d8761579ce3825dd7ee8
1 // { dg-do assemble  }
2 // Bug: we get an error trying to build up our ideal candidate.
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 );