aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/WitherWithGenerics.java
blob: 229cc94e0e874486c90ec1284dc5da662026b529 (plain)
1
2
3
4
5
6
7
8
class WitherWithGenerics<T, J extends T, L extends java.lang.Number> {
	@lombok.experimental.Wither J test;
	@lombok.experimental.Wither java.util.List<L> test2;
	int $i;
	
	public WitherWithGenerics(J test, java.util.List<L> test2) {
	}
}