2009-04-14 02:14:40 +08:00
|
|
|
/* Used in enum.c test */
|
|
|
|
|
|
|
|
enum Color {
|
|
|
|
Red,
|
|
|
|
Green,
|
|
|
|
Blue
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Shape {
|
|
|
|
Square,
|
2009-04-15 05:18:50 +08:00
|
|
|
Triangle = 17,
|
2009-04-14 02:14:40 +08:00
|
|
|
Rhombus,
|
|
|
|
Circle
|
|
|
|
};
|
|
|
|
|
2009-04-15 07:32:43 +08:00
|
|
|
enum Shape aRoundShape = Circle;
|