mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 00:26:04 +00:00
8 lines
216 B
Java
8 lines
216 B
Java
import java.util.List;
|
|
import lombok.experimental.Builder;
|
|
|
|
class BuilderComplex {
|
|
@Builder
|
|
private static <T extends Number> void testVoidWithGenerics(T number, int arg2, String arg3, BuilderComplex selfRef) {}
|
|
}
|