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