URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [elision2.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// Core 1148: should be able to move from value parameter on return
// { dg-options -std=c++0x }
struct A
{
A(const A&) = delete;
A(A&&);
};
A f (A a)
{
return a;
}
Go to most recent revision | Compare with Previous | Blame | View Log