xref: /minix3/external/bsd/llvm/dist/clang/test/PCH/enum.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
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