PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / init / aggr3.C
blob3376897e105ccec43a43583442fbca57cb8e4af5
1 // PR c++/18793
3 struct S { 
4   S(); 
5   S(const S&); 
6   void operator=(const S&); 
7 }; 
8  
9 struct X { 
10   int a, b, c, d, e; 
11   S s; 
12 }; 
14 void foobar () { 
15   X x = {0}; 
16