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

class DelegateWithDeprecated {
	@Delegate private Bar bar;

	private interface Bar {
		@Deprecated
		void deprecatedAnnotation();
		/**
		 * @deprecated
		 */
		void deprecatedComment();
		void notDeprecated();
	}
}