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