blob: 7e6edc9ad6c81b910fadc9670968283eb0745ef5 [file] [log] [blame]
// PR c++/51009
struct A
{
~A();
};
struct B
{
A a;
B(const A& = A());
};
struct C
{
B b1, b2;
};
C c = {};