* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted25.C
blob644fe1bb9dd6ef93533ad24572b4786b8c117a8a
1 // PR c++/48930
2 // { dg-do compile { target c++11 } }
3 // { dg-prune-output "note" }
5 struct A
7   A(const A&) = default;
8 };
10 A a;                            // { dg-error "no match" }