blob: 12b0f6402f87330185db7849ddc356a24867836b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import java.util.Map;
import java.util.HashMap;
import lombok.val;
public class ValAnonymousSubclassSelfReference {
public ValAnonymousSubclassSelfReference() {
super();
}
public <T>void test(T arg) {
T d = arg;
Integer[] e = new Integer[1];
int[] f = new int[0];
java.util.Map<java.lang.String, Integer> g = new HashMap<String, Integer>();
Integer h = 0;
int i = 0;
final @val int j = 1;
final @val int k = 2;
new ValAnonymousSubclassSelfReference() {
x() {
super();
}
};
}
}
|