1
2enum foo {
3  THIS,
4  SHOULD_BE,
5  A_CONSTANT,
6};
7
8struct bar {
9  enum foo this_should_work;
10};
11