[ERROR]
The same name has been associated with two different structured types. <TypeName> is the name of the structured type, which is defined twice.
Not all assembler backends do support structured types. Assembler not supporting them will not issue this message.
myType: STRUCT
field1: DS.W 1
field2: DS.W 1
ENDSTRUCT
XREF myData:myType
myType: STRUCT
field3: DS.B 1
field4: DS.B 3
ENDSTRUCT
Change the name of one of the structured type.
myType1: STRUCT
field1: DS.W 1
field2: DS.W 1
ENDSTRUCT
XREF myData:myType1
myType2: STRUCT
field3: DS.B 1
field4: DS.B 3
ENDSTRUCT