mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 20:21:01 +00:00
9 lines
277 B
Java
9 lines
277 B
Java
//CONF: lombok.builder.className = Test*Name
|
|
import java.util.List;
|
|
import lombok.Builder;
|
|
|
|
class BuilderComplex {
|
|
@Builder(buildMethodName = "execute")
|
|
private static <T extends Number> void testVoidWithGenerics(T number, int arg2, String arg3, BuilderComplex selfRef) {}
|
|
}
|