blob: 034048d2ad9d29633b75f98f1c180255be1f44be [file] [log] [blame]
package p;
class A {
public void m() {}
public void m1() {}
protected A g() {
return this;
}
}
class A1 extends A{
protected A g() {
return this;
}
}