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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
rv-conv1.C
blob
348276612b8e5c01208eb836db101a5d3eee0ce4
1
// PR c++/49267
2
// { dg-do compile { target c++11 } }
3
4
struct X {
5
operator int&();
6
operator int&&();
7
};
8
9
int&&x = X();