//renaming A.m to fred
package p;
public class A{
	private void fred() {
	}
	void k(){
		A a= new A();
		a
		.
		fred ();
	}
	
}

