blob: 781886a7f66c15981d67f40b2033494442b0b5fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Compile with javac, it'll think the T in the generated build() method isn't type compatible.
// Yet, when you take the delomboked output (which delombok will give, but with errors), THAT does compile.
public class I1132RecursiveGenerics {
public static class Recursive<T extends Recursive<T>> {}
public static final class Rec extends Recursive<Rec> {}
@lombok.Builder(builderClassName = "MethodBuilder")
public static <T extends Recursive<T>> T create() {
return null;
}
public static void main(String[] args) {
final MethodBuilder<Rec> builder = I1132RecursiveGenerics.builder();
final Rec rec = builder.build();
// final Rec rec = I1132RecursiveGenerics.<Rec>builder().build();
}
}
|