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
/
ref4.C
blob
6d89fa80a8413ac0a586ab0afa97b663a4bba642
1
// PR c++/41972
2
3
struct X {
4
static const double x;
5
};
6
template <const double& _test_>
7
class Foo { };
8
template <typename _ignore_>
9
struct Y {
10
typedef Foo<X::x> type;
11
};
12