1 struct empty { };
2 struct something {
3 	int spacer;
4 	struct empty foo;
5 	int bar;
6 };
7 
8 struct something X = {
9 	foo: { },
10 	bar: 1,
11 };
12