aboutsummaryrefslogtreecommitdiff
path: root/test/eclipse/resource/rename/withGetterDifferentFile/after/B.java
blob: f7cd35c4526e1cbd2b508dfe4f35e8da897d85c0 (plain)
1
2
3
4
5
6
7
package pkg;

public class B {
	public String test() {
		return new A().getNewString();
	}
}