class LongValue { void x(long l) { System.out.println(l); } void y() { x(10000000000L); } }