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
/
decl2.C
blob
3a77777bd0aa19db4780599d71821dd39abb7548
1
// PR c++/16162
2
3
template <int N> struct O {
4
struct I {
5
template <typename T> struct II {
6
void f();
7
};
8
};
9
};
10
11
template <int N>
12
template <typename T>
13
void O<N>::I::II<T>::f () {}