blob: e1ac82210bfc7f735f5e74259ab3906ca933eb34 [file] [log] [blame]
// PR c++/24791
template<int> struct A
{
static int i;
A() { ++i; }
};
template<int> int A<0>::i(0); // { dg-error "template" }
A<0> a;