minix/external/bsd/llvm/dist/clang/test/PCH/enum.h

17 lines
164 B
C
Raw Normal View History

/* Used in enum.c test */
enum Color {
Red,
Green,
Blue
};
enum Shape {
Square,
Triangle = 17,
Rhombus,
Circle
};
enum Shape aRoundShape = Circle;