aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValAnonymousSubclassSelfReference.java
blob: a1176a3c784fe6a18e1f553a4ed5761280860e77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.Map;
import java.util.HashMap;

public class ValAnonymousSubclassSelfReference {
	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 int j = 1;
		final int k = 2;
		new ValAnonymousSubclassSelfReference() {
		};
	}
}