mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
14 lines
299 B
Java
14 lines
299 B
Java
//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;
|
|
}
|
|
}
|