Files
lombok/test/transform/resource/before/GetterOnMethod.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

8 lines
177 B
Java

class GetterOnMethod {
@lombok.Getter(onMethod=@__(@Deprecated)) int i;
@lombok.Getter(onMethod=@__({@java.lang.Deprecated, @Test})) int j, k;
public @interface Test {
}
}