1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-07 13:29:45 +00:00

Error for struct/union with a duplicate member #2015

This commit is contained in:
bbbradsmith 2023-05-03 01:14:27 -04:00
parent 805e98a7aa
commit 56c715af40

View File

@ -793,6 +793,8 @@ static int HandleSymRedefinition (SymEntry* Sym, const Type* T, unsigned Flags)
*/ */
Error ("Redeclaration of enumerator constant '%s'", Sym->Name); Error ("Redeclaration of enumerator constant '%s'", Sym->Name);
Sym = 0; Sym = 0;
} else if (Flags & SC_STRUCTFIELD) {
Error ("Duplicate member '%s'", Sym->Name);
} }
} }
} }