(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
eh/
anon1a.cc
namespace {
  struct A
  {
    virtual void f();
  };

  void A::f() { }
}

void g() { throw A(); }