ref: 08a32f26c08c322c5549b94c05032d2e87f1df3c 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; }