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
/
static25.C
blob
20c0c846e3a31e596bb4dc995f37ff845ad9b9a5
1
// PR c++/27819
2
3
struct A
4
{
5
static const char i = 1;
6
};
7
8
template<int> struct B
9
{
10
static const int j = A::i;
11
int x[int(j)];
12
};
13
14
B<0> b;