(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
expr/
dtor3.C
struct B {
  ~B();
};
struct D : public B {
  ~D();
};

void f(D d) {
  d.B::~B();
}