f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
16 lines
164 B
C
16 lines
164 B
C
/* Used in enum.c test */
|
|
|
|
enum Color {
|
|
Red,
|
|
Green,
|
|
Blue
|
|
};
|
|
|
|
enum Shape {
|
|
Square,
|
|
Triangle = 17,
|
|
Rhombus,
|
|
Circle
|
|
};
|
|
|
|
enum Shape aRoundShape = Circle;
|