1 enum : char {
2   A=1,
3 };
4 
5 enum : char {
6   B=1,
7 };
8 
9 struct {
10   enum {
11     B,
12     C,
13   } member;
14 } global_var;
15