public class Caster3 {
public static void main(String[] args) {
Object i = new Integer(32);
Integer o = (Integer) i;
out((Object) o);
}
static void out(Object o) {
System.out.println("Object out");
}
static void out(Integer i) {
System.out.println("Integer out");
}
}