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
/
static6.C
blob
30ecae94067cead7911ff4384f8308dfda7ceaaf
1
// PR c++/13969
2
3
struct B {
4
static const int N=10;
5
};
6
7
template <int> struct X {};
8
9
template <typename> struct S {
10
static const int N = B::N;
11
X<N> x;
12
};
13
14
template class S<float>;