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