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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
lookup4.C
blob
3bd73a34e60d5c1729ff17a3cc9e55a406ecf671
1
// PR c++/13950
2
3
template <class T> struct Base {};
4
template <class T> struct Derived: public Base<T> {
5
typename Derived::template Base<double>* p1;
6
};