arm64: Improve constant generation, with tests.
[tinycc.git] / tests / tests2 / 62_enumerator_redefinition.c
blob3da85ae2efdd035e716081c3f2feaeb1f68b90c8
1 enum color {RED, GREEN, BLUE};
2 enum rgb {RED, G, B};
4 enum color c = RED;