IGYCB7300-W The code from lines &1 in program '&2' can never be executed and was therefore discarded.

Explanation

The compiler has determined that based on the construction of the program, code on lines "&1" cannot be reached, so the compiler removed it. The compiler makes this determination in several ways.

System action

The compilation continues, with the unreachable code being ignored for the remainder of the compilation. RC=4 is returned.

User response

The unreachable code has been removed, so it has no effect on the program. You can clean up your program to remove the unreachable code from the source. If the code should be reachable, you need to determine what is leading the compiler to determine it is not.