public class demo { public static void main(String[] args) { int x = 4; // Scope of x starts here System.out.printf("%d\n", x); { int x = 7; // x is overshadowed by x here } } }