(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
dtor2.C
struct Foo
{
    template <int i>
    ~Foo() {} // { dg-error "5:destructor .Foo::~Foo\\\(\\\)." }
};

int main()
{
   Foo f;
}