class Test { void bar() { foo(1); } void foo(int i) { System.out.println(i); System.out.println(i); } }