Files
Michail Plushnikov 2cc97a1535 [lombok] IDEA-313324 Cannot resolve the staticConstructor of Lombok @Value
GitOrigin-RevId: b1f37499752fa34d1f906f1aa30fea98860ba643
2023-03-29 20:35:16 +00:00

10 lines
183 B
Java

import lombok.Value;
@Value(staticConstructor = "o3f")
public class ValueDto {
private int someInt;
public static void main(String[] args) {
ValueDto.o3f(2);
}
}