1 2 3 4 5 6 7 8 9 10 11 12 13
// PR c++/34486 template<typename> struct A { typedef A* X; }; template<typename T> struct B { using A<T>::X::Y; // { dg-error "not a base type" } }; B<int> b;