A1301: Structured type redefinition: <TypeName>

[ERROR]

Description

The same name has been associated with two different structured types. <TypeName> is the name of the structured type, which is defined twice.

Note

Not all assembler backends do support structured types. Assembler not supporting them will not issue this message.

Example
  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
  
Tips

Change the name of one of the structured type.

Example
  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