blob: a1ffd3d8246cbb3a8130f073be3fa139b5ebe175 [file] [log] [blame]
/* PR debug/79129 */
/* { dg-do compile } */
/* { dg-options "-gdwarf-4 -O2 -fdebug-types-section" } */
struct B
{
struct A { void foo (int &); };
A *bar ();
~B () { int a = 1; bar ()->foo (a); }
};
struct C { ~C (); B c; };
C::~C () {}