blob: fe73da8f98df05347188d602662810779085ca6b [file] [log] [blame]
// PR c++/104583
// { dg-do compile { target c++11 } }
struct A {
A();
int c;
};
struct D {
A a{};
};
void g()
{
D d;
d = {};
}