blob: bec952c230cb93e60f6c6772419def01068d4b81 [file] [log] [blame]
// PR c++/50866
struct A { A(); ~A(); };
struct B { B(const char *, const A& = A()); ~B(); };
struct C {
B b1, b2;
};
void f()
{
C c = {
"a","b"
};
}