* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / elision_conv.C
blobd778a0b8025a07a90fa5b27928de14c3757442e0
1 // Core 1579 return by converting move constructor
2 // PR c++/58051
3 // { dg-do compile { target c++11 } }
5 struct A {
6   A() = default;
7   A(A&&) = default;
8 };
10 struct B {
11   B(A) { }
14 B f()
16   A a;
17   return a;