1 struct S0
2 {
3     int x = void;
4 }
5 struct S1
6 {
7     S0  x = S0(42);
8 }
main()9 void main()
10 {
11     S1  x;
12     assert(x.x.x == 42);
13 }
14