ref: 87721662939577c4589ee5296640ceb62d8f6283 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; }