* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted21.C
blob312194d98767a2f54252976b970c2383b6da2528
1 // PR c++/46736
2 // { dg-do compile { target c++11 } }
4 struct U {
5   U();
6 private:
7   U(U const&);                  // { dg-message "private" }
8 };
10 struct X {
11   U const u;
12   X();
13   X(X&&);
16 X::X(X&&)=default;              // { dg-message "implicitly deleted" }
17 // { dg-prune-output "within this context" }
19 X f() {
20   return X();