Skip to main content

Compiler Error C0117

Message: No such label '<jump label>' within the scope of the 'JMP' statement

Possible error cause: A jump is made to a label that does not exist.

Error correction: Define the label that you specify as the destination.

Example 384. Example of the error:
PROGRAM PLC_PRG
VAR
END_VAR
JMP A;

Message:

C0117: No such label 'A' within the scope of the 'JMP' statement.