blob: 83bcf51b7c18e71048cafa3caded6ff70527bf2e [file] [log] [blame]
// PR c++/40139
template<int> struct A
{
static int i;
};
template<int N> int A<N>::i = { A::~A }; // { dg-error "" }
template class A<0>;