blob: 285f551b478993de63d2d623c40691fc3c7ec261 [file] [log] [blame]
public class A {
void foo(Object o) {
if (o instanceof String){}
}
}
class AImpl extends A {
void foo(Object o) {
if (o instanceof String){}
}
}
class B {
void bar(Object o) {
if (o instanceof String){}
}
}