PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / spec31.C
blob3b36ab486ad077d38d3fdf4239d5ee6699ce3c20
1 // PR c++/28058
3 template<int> struct A
5   A() {}
6 };
8 A<0> a;
10 template<> A<0>::A() {} // { dg-error "specialization" }