aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/DelegateWithVarargs2.java
blob: bc3fdf097744731cd1fc87feccab4fe51e5c7d34 (plain)
1
2
3
4
5
6
7
8
9
10
//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 DelegateWithVarargs2 {
	@Delegate private DelegateWithVarargs2.B bar;

	public class B {
		public void varargs(Object[]... keys) {}
	}
}