should be a const expression
[cparser] / parsetest / enum.c
1 int main(int argc) {
2
3         enum { A, B, C } a = argc;
4
5         return a;
6 }