Added test for issue 361. It is currently ignored.

This commit is contained in:
Roel Spilker
2014-05-08 01:15:57 +02:00
parent 22c5e0daaf
commit 293653e2ff
@@ -0,0 +1,23 @@
// ignore
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;
}
};
}