[bugfix] generics on inner classes whose outer type has generics, when the outer type is an interface, caused bugs in ecj.

This commit is contained in:
Reinier Zwitserloot
2018-04-23 22:36:07 +02:00
parent 472d602693
commit a27826b268
5 changed files with 67 additions and 2 deletions
@@ -0,0 +1,6 @@
public interface EqualsAndHashCodeWithGenericsOnInnersInInterfaces<A> {
@lombok.EqualsAndHashCode class Inner<B> {
int x;
}
}