(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
dtor4.C
// PR c++/19440
// Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>

// { dg-do compile }

template<int> struct A
{
  ~A<0>(); // { dg-error "parse error|declaration|template-id" }
};