repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
static17.C
blob
bf79bccc3284e34797f83dd5b42b725fbcb4c730
1
// PR c++/23896
2
3
template <int> struct X {};
4
5
template <typename T> struct length {
6
static const int value = 2;
7
};
8
9
template <typename T> void foo () {
10
sizeof(X<length<T>::value>);
11
}
12
13
template void foo<int>();