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