aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/lookup4.C
blob: 3bd73a34e60d5c1729ff17a3cc9e55a406ecf671 (plain)
1
2
3
4
5
6
// PR c++/13950

template <class T> struct Base {};
template <class T> struct Derived: public Base<T> {
  typename Derived::template Base<double>* p1;
};