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 
f(A a)10 A f (A a)
11 {
12   return a;
13 }
14