(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lto/
20090313_1.C
struct Foo {
  virtual void X();
  virtual void Y();
};
struct Bar: public Foo {
  Bar(Foo *);
  void Y();
};
void Baz() {
  Foo f;
  Bar b(&f);
}