[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / lookup4.C
blob3bd73a34e60d5c1729ff17a3cc9e55a406ecf671
1 // PR c++/13950
3 template <class T> struct Base {};
4 template <class T> struct Derived: public Base<T> {
5   typename Derived::template Base<double>* p1;
6 };