Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / lookup4.C
blobd64006133c3b8107efb58f7956a922c80fd52b70
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; // { dg-error "" }
6 };