ref: 19f4d62e77c2b66116a48c6605f2cc9f239e53b0 dir: /tests/cc/execute/0055-enum.c/
enum E { x, y, z, }; int main() { enum E e; if(x != 0) return 1; if(y != 1) return 2; if(z != 2) return 3; e = x; return e; }