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