mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 12:22:31 +00:00
add tests for the combination of Builder and Value/Data
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import java.util.List;
|
||||
|
||||
@lombok.Builder @lombok.Value
|
||||
class BuilderAndValue {
|
||||
private final int zero = 0;
|
||||
}
|
||||
|
||||
@lombok.Builder @lombok.Data
|
||||
class BuilderAndData {
|
||||
private final int zero = 0;
|
||||
}
|
||||
Reference in New Issue
Block a user