blob: ce9a78a1e86e4327d9852d1f2ecb81ddcf8e281c [file] [log] [blame]
//abstract and make private
package p;
class A{
private int f;
void m(){
int g= getF();
}
public int getF(){
return f;
}
}
class B{
int m(){
A a= new A();
return a.getF();
}
}