(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
opt/
pr47366.C
// PR rtl-optimization/47366
// { dg-do compile }
// { dg-options "-O -fnon-call-exceptions -fno-tree-ccp -fno-tree-forwprop" }

struct A
{
  int i;
  virtual ~A ();
};

struct B : virtual A
{};

struct C : B
{
  void bar () {}
};

void foo ()
{
  C ().bar ();
}