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
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
cast5.C
blob
4e48d1d3c5c446b450882d76e5fb3678cef42f77
1
// PR c++/82360
2
// { dg-do compile { target c++11 } }
3
4
class a {};
5
template <class> class b {
6
b(b &&c) : d(static_cast<a &&>(c.d)) {}
7
a d;
8
};