aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/dtor6.C
blob: 83bcf51b7c18e71048cafa3caded6ff70527bf2e (plain)
1
2
3
4
5
6
7
8
9
10
// 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>;