aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ValAnonymousSubclassWithGenerics.java
blob: c0f8157af6ab3347b549d1c00242af41fe359f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// issue 205: val inside anonymous inner classes is a bit tricky in javac, this test ensures we don't break it.
import java.util.*;
import lombok.val;

public class ValAnonymousSubclassWithGenerics {
	Object object = new Object(){
		void foo() {
			val j = 1;
		}
	};
	
	void bar() {
		val k = super.hashCode();
		int x = k;
	}
	
	java.util.List<String> names = new java.util.ArrayList<String>() {
		public String get(int i) {
			val result = super.get(i);
			return result;
		}
	};
}