aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/WitherLegacyStar.java
blob: 69da9278d9baec30aeb30e48d63de71fc516655f (plain)
1
2
3
4
5
6
7
8
9
10
class WitherLegacyStar {
	int i;
	WitherLegacyStar(int i) {
		this.i = i;
	}
	@java.lang.SuppressWarnings("all")
	public WitherLegacyStar withI(final int i) {
		return this.i == i ? this : new WitherLegacyStar(i);
	}
}