Statement is Unreachable (SU)

Description:

This message is reported for a statement that can never be executed. To avoid repeating the warning, it is produced once for each sequence of unreachable statements.

Example:

   y = -1;
   if (y > 0) {
       // unreachable code
        ...
   }