A1302: Type <TypeName> is previously defined as label

[ERROR]

Description

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.

Note

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

Example
  myType:  DS.W 3

  ...

  myType:  STRUCT

  field1:    DS.W 1

  field2:    DS.W 1

           ENDSTRUCT
  
Tips

Change the name of one of the structured type or of the label.

Example
  myVar:   DS.W 3

  ...

  myType:  STRUCT

  field1:    DS.W 1

  field2:    DS.W 1

           ENDSTRUCT