blob: 7376c0871f7427ca2425bcb4ecc1a5b079690172 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//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
//ignore: crashed javac with NPE, should be enabled when that bug is fixed
import lombok.experimental.Delegate;
import lombok.Getter;
interface DelegateOnLocalClass {
void test1() {
class DelegateOnStatic {
@Delegate private final java.lang.Runnable field = null;
}
}
void test2() {
Runnable r = new Runnable() {
@Delegate private final java.lang.Runnable field = null;
}
}
}
|