[ERROR]
The identifier used to identify a structured type was previously used as a label. <TypeName> is the name of the structured type, which is already used as label name.
Not all assembler backends do support structured types. Assembler not supporting them will not issue this message.
myType: DS.W 3
...
myType: STRUCT
field1: DS.W 1
field2: DS.W 1
ENDSTRUCT
Change the name of one of the structured type or of the label.
myVar: DS.W 3
...
myType: STRUCT
field1: DS.W 1
field2: DS.W 1
ENDSTRUCT