Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
elision2.C
blob: b3d13fb187ed5693881e3cf322bb84cf0326f989 [
file
] [
log
] [
blame
]
// Core 1148: should be able to move from value parameter on return
// { dg-do compile { target c++11 } }
struct
A
{
A
(
const
A
&)
=
delete
;
A
(
A
&&);
};
A f
(
A a
)
{
return
a
;
}