llvm-for-llvmta/tools/clang/test/PCH/enum.h

17 lines
164 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
/* Used in enum.c test */
enum Color {
Red,
Green,
Blue
};
enum Shape {
Square,
Triangle = 17,
Rhombus,
Circle
};
enum Shape aRoundShape = Circle;