aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/WithMethodMarkedDeprecated.java
blob: 659ea1defb8a3c84bc872eb531494176a915ff66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//platform !ecj: Javadoc copying not supported on ecj
import lombok.With;

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