blob: 581c312ab11ebcfb5a37bccea3e79c4fcdf5d840 [file] [log] [blame]
public class Test {
void foo(Object o) {
if (o instanceof Integer) {
Integer i = Integer.class.cast(o);
}
}
}