1// PR c++/28058
2
3template<int> struct A
4{
5  A() {}
6};
7
8A<0> a;
9
10template<> A<0>::A() {} // { dg-error "specialization" }
11