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

class DelegateWithDeprecated {
	@Delegate private Bar bar;

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