Files
lombok/test/transform/resource/before/WitherDeprecated.java
T

15 lines
206 B
Java

import lombok.experimental.Wither;
class WitherDeprecated {
@Deprecated
@Wither int annotation;
/**
* @deprecated
*/
@Wither int javadoc;
WitherDeprecated(int annotation, int javadoc) {
}
}