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