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