static int toInt_checked(long l) { if (l != (int) l) fail("Too large for int: " + l); ret (int) l; }