blob: b9b728bc4d3450a86d7c32333144924ddb7d51ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//platform !eclipse: Requires a 'full' eclipse with intialized workspace, and we don't (yet) have that set up properly in the test run.
//skip compare content
import lombok.experimental.Delegate;
import lombok.Getter;
class DelegateOnStatic {
@Delegate private static final java.lang.Runnable staticField = null;
}
class DelegateOnStaticMethod {
@Delegate private static final java.lang.Runnable staticMethod() {
return null;
};
}
|