mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 10:18:35 +00:00
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;
|
|
}
|
|
}
|
|
|