//abstract and make private
package p;
class A{
	public int f;
	void m(){
		int g= f;
	}
}