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
/
crash17.C
blob
9fa826b999d6717ff0f64c2fe3e6b7d328982559
1
template <int I>
2
struct A {
3
};
4
5
template <typename T>
6
struct B {
7
typedef typename T::type type;
8
static const type j = T::j;
9
10
A<j> b;
11
};
12
13
struct C {
14
typedef int type;
15
static const int j = 3;
16
};
17
18
int i = B<C>::j;
19