aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/DelegateWithDeprecated.java
blob: bf3519b34aa38d39a486fdd1c061539de38643ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//platform !eclipse: Requires a 'full' eclipse with intialized workspace, and we don't (yet) have that set up properly in the test run.
import lombok.experimental.Delegate;

class DelegateWithDeprecated {
	@Delegate private Bar bar;

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