* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / elision2.C
blobb3d13fb187ed5693881e3cf322bb84cf0326f989
1 // Core 1148: should be able to move from value parameter on return
2 // { dg-do compile { target c++11 } }
4 struct A
6   A(const A&) = delete;
7   A(A&&);
8 };
10 A f (A a)
12   return a;