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