Files
lombok/test/transform/resource/before/SetterOnMethodOnParam.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
204 B
Java

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