OSDN Git Service

PR c++/51459
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / elision2.C
1 // Core 1148: should be able to move from value parameter on return
2 // { dg-options -std=c++0x }
3
4 struct A
5 {
6   A(const A&) = delete;
7   A(A&&);
8 };
9
10 A f (A a)
11 {
12   return a;
13 }