Synopsis - Cross-Reference

File: /tests/Cxx/ConstEvaluator/input/enum.cc
1enum Color { RED = 0x01, GREEN = 0x02, BLUE = 0x04, WHITE = 0x01 | 0x02 | 0x04};
2enum Number { ZERO, ONE, TWO, THREE};
3enum Flag { NO = 0, YES, OFF = 0, ON, FALSE = OFF, TRUE = ON};