blob: 15c0199b3b0d5f6a02fa5d94de320b40372f37d6 [file] [log] [blame]
interface I1 {}
interface I2 extends I1{}
interface I3 extends I1 {}
class PP {
void f(Object o) {
if (o instanceof I1) {
if (!(o instanceof I2) || ((I2)o).getClass() != null){}
}
}
}