Files
lombok/test/transform/resource/before/GetterOnMethodErrors.java
T
Reinier Zwitserloot 95cf815285 replaced double underscore as new standard way of writing the dummy annotation for onX instead of single underscore, which emits warnings on javac8+.
Also made dollars and Xes legal in addition to underscores, in case double underscore disappears later too.
2013-08-12 23:13:11 +02:00

7 lines
142 B
Java

class PlaceFillerToMakeSurePositionIsRelevant {
}
@lombok.Getter(onMethod=@__(@Deprecated))
class GetterOnMethodErrors {
private int test;
}