union {
struct {
uint8_t a;
uint8_t b;
} a;
} bar;
struct foo {
union bar w;
};
struct foo asdf = {
0,
{{0,0}},
1