blob: 85129223c2e12a498e85b621459d872580b3d3d2 (
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(setterPrefix = "with") @Value public static class Test<Foo, Bar extends Set<Foo>, Quz extends Inter<Bar, Quz>> {
Foo foo;
Bar bar;
}
}
|