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