aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/GetterOnMethod.java
blob: 558f3f648cb11f9691435d3a238c294c7c9cf1b4 (plain)
1
2
3
4
5
6
7
class GetterOnMethod {
	@lombok.Getter(onMethod=@_(@Deprecated)) int i;
	@lombok.Getter(onMethod=@_({@java.lang.Deprecated, @Test})) int j, k;

	public @interface Test {
	}
}