blob: 91519884186324f1b9b8ae43bc951533ab3809f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//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 DelegateWithVarargs {
@Delegate private Bar bar;
private interface Bar {
void justOneParameter(int... varargs);
void multipleParameters(String first, int... varargs);
void array(int[] array);
void arrayVarargs(int[]... arrayVarargs);
}
}
|