1*f4a2713aSLionel Sambuc /* Used in enum.c test */ 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc enum Color { 4*f4a2713aSLionel Sambuc Red, 5*f4a2713aSLionel Sambuc Green, 6*f4a2713aSLionel Sambuc Blue 7*f4a2713aSLionel Sambuc }; 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel Sambuc enum Shape { 10*f4a2713aSLionel Sambuc Square, 11*f4a2713aSLionel Sambuc Triangle = 17, 12*f4a2713aSLionel Sambuc Rhombus, 13*f4a2713aSLionel Sambuc Circle 14*f4a2713aSLionel Sambuc }; 15*f4a2713aSLionel Sambuc 16*f4a2713aSLionel Sambuc enum Shape aRoundShape = Circle; 17