Describe the bug
Base class has generic parameter
Parent class extends Base class with any inner static class generic
get Compile Error
Error:(5, 1) java: wrong number of type arguments; required 3
To Reproduce
```package reproducing;
import lombok.experimental.SuperBuilder;
@SuperBuilder
public class Parent extends Base
private String parentString;
public static class SomeInnerStaticClass { }
}
@SuperBuilder
class Base
private final String baseString;
}
```
Expected behavior
Should compile
Version info (please complete the following information):
Describe the bug
Maybe it's an Intllij Idea problem, but if you use not inner static class it works fine
Could you try it without IntelliJ, i.e. using maven/gradle/javac?
It's reproduced with maven.
This is fixed via #2278, thanks @Lekanich!
Will be in next stable.
Is it in version "edge-SNAPSHOT" (https://projectlombok.org/download-edge) already? With that version I have this problem too... :(
Since 2020-01-15, it is.
Most helpful comment
Since 2020-01-15, it is.