OSDN Git Service

PR c++/29363
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / lookup4.C
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 };