(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
dtor1.C
struct A {};

template <typename T> struct B
{
  B() { A().A::~A(); }
};

B<void> b;