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