mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
c08559b016
Note that in general this is just broken; do not put non-static inner classes in generics-carrying classes in the first place!
7 lines
115 B
Java
7 lines
115 B
Java
public class EqualsAndHashCodeWithGenericsOnInners<A> {
|
|
@lombok.EqualsAndHashCode class Inner<B> {
|
|
int x;
|
|
}
|
|
}
|
|
|