repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
cast2.C
blob
0ce55f035581bdb5bfe37c15eea0e9f3926ef1fc
1
// PR c++/56238
2
3
class A
4
{
5
template < typename T > T& get ();
6
template < typename T > class B
7
{
8
void RemovePoint (A& value)
9
{
10
static_cast < double >(value.get < T > ());
11
}
12
};
13
};