package p;
class A {
	B target = new B();
	public void secondMethodToMove(String param) {
		methodToStay();
	}
	public void methodToStay() { };
}