/* my intention was to show a compiling error because of an unreachable code block, */ public class unreach { public static void main(String[] args) { int intVar = 0; if(intVar == 0) { if(intVar != 0) { System.out.println("Should never be here."); } } } }