aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/lookup4.C
blob: d64006133c3b8107efb58f7956a922c80fd52b70 (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; // { dg-error "" }
};