aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/WitherPlain.java
blob: ab6a3f4b277b8c4910f9504585359f4fbcc6e81c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class WitherPlain {
	int i;
	final int foo;
	WitherPlain(int i, int foo) {
	}
	@java.lang.SuppressWarnings("all")
	public WitherPlain withI(final int i) {
		return this.i == i ? this : new WitherPlain(i, this.foo);
	}
	@java.lang.SuppressWarnings("all")
	public WitherPlain withFoo(final int foo) {
		return this.foo == foo ? this : new WitherPlain(this.i, foo);
	}
}