* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted39.C
bloba4963c4d13215cdc0231ca424b7be464f56594c2
1 // DR 1402
2 // { dg-do compile { target c++11 } }
4 template <class T> T&& move(T& t);
6 struct A
8   A(const A&);
9 };
11 struct B
13   B(B&&);
16 struct C
18   A a;
19   B b;
22 extern C c1;
23 C c2(move(c1));