public class Scope2 { public static void main(String[] args) { int x = 1; blah(x); System.out.println(x); } public static void blah(int x) { x = 2; } }