unreachable code
An instruction will never be executed. To generate this warning, you must use the /Og compiler option. The following program will generate C4702 on the last instruction.
#include <stdio.h> int main() { return 1; printf("I won’t print.\n"); // Unreachable. }