mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 00:26:04 +00:00
Added test for issue 361. It is currently ignored.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user