View Revisions: Issue #1237

Summary 0001237: Duplicate enum declarationof enum types should be flag by compiler
Revision 2021-01-21 16:45 by jerome
Description Example below would allow 2 entries of duplicate "a", the compiler should produce an error:

enum SomeEnum
{
   none, a,a
};