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

class DelegateWithDeprecated {
	@Delegate private Bar bar;

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