blob: c6b716d1277b8f3054d5c9ba891d7b5b5b4aca0e [file] [log] [blame]
package p;
public class A1 extends A{
protected A f(){
return this;
}
void test(){
f().m1();
}
}