Rebase.
[official-gcc.git] / gcc / testsuite / g++.dg / init / aggr7.C
blobbec952c230cb93e60f6c6772419def01068d4b81
1 // PR c++/50866
3 struct A { A(); ~A(); };
4 struct B { B(const char *, const A& = A()); ~B(); };
5 struct C {
6   B b1, b2;
7 };
8 void f()
10      C c = {
11           "a","b"
12      };