1 // { dg-do compile { target c++11_only } }
3 // pr c++/66443 it is still ill-formed in C++ 11 for a synthesized
4 // ctor that's deleted only because of virtual base construction
8 struct A { // { dg-message "candidate" }
9 A( int ) { a_made = true; } // { dg-message "candidate" }
12 struct B: virtual A { // { dg-message "no matching function" }
14 virtual void Frob () = 0;
28 : A( 1 ) // { dg-error "deleted function" }