EQA1727E enum member name is the name of a declared variable. It cannot be used as the name of a member of an enum type.

Explanation

This message applies to C. For example, given
int blue;
The use of the name blue in the following declaration is invalid:
enum teamColors {blue,gold};