repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
elision2.C
blob
b3d13fb187ed5693881e3cf322bb84cf0326f989
1
// Core 1148: should be able to move from value parameter on return
2
// { dg-do compile { target c++11 } }
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
}