aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/BuilderWithRecursiveGenerics.java
blob: 0ab86220635ed7bbbe11ab47b529b70b8a199ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//issue #1298
import java.util.Set;
import lombok.Builder;
import lombok.Value;

public class BuilderWithRecursiveGenerics {
	interface Inter<T, U extends Inter<T, U>> {}
	
	@Builder @Value public static class Test<Foo, Bar extends Set<Foo>, Quz extends Inter<Bar, Quz>> {
		Foo foo;
		Bar bar;
	}
}