Skip to main content

Compiler Error C0116

Message: The label '<jump label>' is a duplicate

Possible error cause: A label is defined multiple times.

Error correction: Define each label one time only.

Example 383. Example of the error:
PROGRAM PLC_PRG
VAR
END_VAR
JMP label;
label:

label:

Message:

C0116: The label 'LABEL' is a duplicate