1 struct Foo {
2   int i;
3 };
4 
5 struct S {
6   int int_member = 3;
7   float float_member = 3.0f;
8   Foo class_member = Foo();
9 };
10