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