blob: e133edfbf1bae3c17dca04d0a0ac8f04f5c7edf6 [file] [log] [blame]
// 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 ();
}