class Simple { void x(int i) { System.out.println(i); } void y() { x(10); } }