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 of the error:
PROGRAM MAIN
VAR
END_VAR
JMP A;Message:
C0117: No such label 'A' within the scope of the 'JMP' statement.