blob: 7f8b38653a13b0aa64407ada9e8aa6893f45da8b [file] [log] [blame]
package p;
class A {
protected void foo(Object o){}
protected void foo(String s){}
}
class B extends A{
protected void foo(Object o){}
protected void foo(String s){}
}