1 2 enum foo { 3 THIS, 4 SHOULD_BE, 5 A_CONSTANT, 6 }; 7 8 struct bar { 9 enum foo this_should_work; 10 }; 11