mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-04 22:14:47 +00:00
Fixing issue #1298: @Builder with recursive generics didn’t work in javac/delombok.
This commit is contained in:
@@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user