mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
8 lines
232 B
Java
8 lines
232 B
Java
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) {}
|
|
}
|