Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / error33.C
blobe1ac82210bfc7f735f5e74259ab3906ca933eb34
1 // PR c++/24791
3 template<int> struct A
5     static int i;
6     A() { ++i; }
7 };
9 template<int> int A<0>::i(0);   // { dg-error "template" }
11 A<0> a;