1 // PR c++/48930 2 // { dg-do compile { target c++11 } } 3 // { dg-prune-output "note" } 4 5 struct A 6 { 7 A(const A&) = default; 8 }; 9 10 A a; // { dg-error "no match" } 11