Files
lombok/test/transform/resource/before/JacksonizedBuilderComplex.java
T
Reinier Zwitserloot bf0de8b678 [testing] marking down all jackson related tests as j8+ only
The jackson dep we need for testing is too new a class file to run on j6, stubbing it out too much effort.
Odds we find a bug specifically because this stuff fails on java6/7 are low, and I'm okay with supporting
6/7 a little less well.
2021-03-13 04:25:24 +01:00

12 lines
425 B
Java

//version 8: Jackson deps are at least Java7+.
//CONF: lombok.builder.className = Test*Name
import java.util.List;
import lombok.Builder;
import lombok.extern.jackson.Jacksonized;
class JacksonizedBuilderComplex {
@Jacksonized
@Builder(buildMethodName = "execute", setterPrefix = "with")
private static <T extends Number> void testVoidWithGenerics(T number, int arg2, String arg3, JacksonizedBuilderComplex selfRef) {}
}