mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 14:21:47 +00:00
9066d57ed9
Eclipse's implementation continues to pass them all.
8 lines
245 B
Java
8 lines
245 B
Java
import java.util.List;
|
|
import lombok.experimental.Builder;
|
|
|
|
class BuilderComplex {
|
|
@Builder(buildMethodName = "execute")
|
|
private static <T extends Number> void testVoidWithGenerics(T number, int arg2, String arg3, BuilderComplex selfRef) {}
|
|
}
|