OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / spec31.C
1 // PR c++/28058
2
3 template<int> struct A
4 {
5   A() {}
6 };
7
8 A<0> a;
9
10 template<> A<0>::A() {} // { dg-error "specialization" }