blob: 7dc4e631d6cba82990d7768fce8d9c23bcf29ef5 [file] [log] [blame]
Douglas Gregor1daeb692009-04-13 18:14:40 +00001/* Used in enum.c test */
2
3enum Color {
4 Red,
5 Green,
6 Blue
7};
8
9enum Shape {
10 Square,
Douglas Gregorfeb84b02009-04-14 21:18:50 +000011 Triangle = 17,
Douglas Gregor1daeb692009-04-13 18:14:40 +000012 Rhombus,
13 Circle
14};
15
Douglas Gregorf0b575f2009-04-14 23:32:43 +000016enum Shape aRoundShape = Circle;