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