Files
lombok/test/transform/resource/before/FlagUsages.java
T
Reinier Zwitserloot d1899a81e9 [test] Missing after-X files used to be an implicit 'just ignore the content' signal; now you need an explicit directive to allow this behaviour.
[configuration] added tests for @Accessors configuration key implementations.
2014-01-20 01:46:01 +01:00

12 lines
250 B
Java

//skip compare content
//CONF: lombok.Getter.flagUsage = WARNING
//CONF: lombok.experimental.flagUsage = ERROR
public class FlagUsages {
@lombok.Getter String x;
@lombok.experimental.Wither String z;
public FlagUsages(String x, String y) {
}
}