A1416: Absolute section starting at <Address> size <Size> overlaps with absolute section starting at <Address>

[DISABLED, INFORMATION, WARNING, ERROR]

Description

Two absolute sections are overlapping each other.

Example
    ORG $1000

    DC.B 0,1,2,3

    ; address $1004

  DA: SECTION

    DC.B 1

    ORG $1001

    DC.B 0,1,2,3

    ; address $1005
  
Tips
Example
    ORG $1000

    DC.B 0,1,2,3

    ; address $1004

  SectEnd: EQU *

  DA: SECTION

    DC.B 1

    ORG SectEnd

    DC.B 0,1,2,3

    ; address $1008