aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/WithMethodMarkedDeprecated.java
blob: 7a6549e5de3372c5c219cf32d48af60fff9b9e1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import lombok.With;

class WithMethodMarkedDeprecated {
	
	@Deprecated
	@With int annotation;
	
	/**
	 * @deprecated
	 */
	@With int javadoc;
	
	WithMethodMarkedDeprecated(int annotation, int javadoc) {
	}
}