(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
abstract6.C
// PR c++/60532

class A
{
  ~A ();
};
class B : A
{
  virtual void m () = 0;
};