1struct IntWrapper {2 int value;3 4 bool : 1;5 6 enum {7 one,8 two,9 three10 };11 union {12 int a;13 char b;14 };15};16 17struct Outer {18 struct Inner {19 int value;20 };21};22