Rebase.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / aggr1.C
blob0e408e6c6842eda28677daae51ac4cfa7df7f1f4
1 // PR c++/49132
2 // { dg-do compile { target c++11 } }
4 struct A {
5   const int m;
6 };
8 A a1 = {};
9 A a2{};
11 struct B {
12   A a;
15 B b1 = {};
16 B b2{};