[fixes #3053] Delay default annotation removal

This commit is contained in:
Rawi01
2022-01-31 23:22:15 +01:00
committed by Roel Spilker
parent 1ba5fe86aa
commit 8a914b1bf0
6 changed files with 180 additions and 2 deletions
@@ -0,0 +1,12 @@
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
import lombok.Builder;
@NoArgsConstructor
@AllArgsConstructor
@SuperBuilder
class ConstructorsWithSuperBuilderDefaults {
@Builder.Default int x = 5;
int y;
}