blob: 3376897e105ccec43a43583442fbca57cb8e4af5 [file] [log] [blame]
// PR c++/18793
struct S {
S();
S(const S&);
void operator=(const S&);
};
struct X {
int a, b, c, d, e;
S s;
};
void foobar () {
X x = {0};
}