A partial reverse for commit eda2c756edc4dca004ba217d5bf361235dd9de1f
[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;