brintos

brintos / llvm-project-archived public Read only

0
0
Text · 164 B · 7dc4e63 Raw
17 lines · c
1/* Used in enum.c test */2 3enum Color {4  Red,5  Green,6  Blue7};8 9enum Shape {10  Square,11  Triangle = 17,12  Rhombus,13  Circle14};15 16enum Shape aRoundShape = Circle;17