ref: 5a887532fdcc8d14f6ee68fb647dd83725c0f43f 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; }