1 // PR c++/19253
2 
3 namespace N {}
4 
5 template<typename> struct A
6 {
7   A<typename N::X<int> > a; // { dg-error "" }
8 };
9