1// PR c++/18793
2
3struct S {
4  S();
5  S(const S&);
6  void operator=(const S&);
7};
8
9struct X {
10  int a, b, c, d, e;
11  S s;
12};
13
14void foobar () {
15  X x = {0};
16}
17