aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/MixGetterVal.java
blob: a2b44ea0997a79f31d74d86ab6e84ebfaae0c130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class MixGetterVal {
	private int x;
	public void m(int z) {
	}
	public void test() {
		final int y = x;
		m(y);
		final int a = getX();
		m(a);
	}
	@java.lang.SuppressWarnings("all")
	public int getX() {
		return this.x;
	}
}