blob: 0e408e6c6842eda28677daae51ac4cfa7df7f1f4 [file] [log] [blame]
// PR c++/49132
// { dg-do compile { target c++11 } }
struct A {
const int m;
};
A a1 = {};
A a2{};
struct B {
A a;
};
B b1 = {};
B b2{};