[fixes #2382] Handle generic supertypes

This commit is contained in:
Rawi01
2020-05-09 13:19:17 +02:00
committed by Roel Spilker
parent 77ab1cf867
commit 7d08af7d85
4 changed files with 75 additions and 4 deletions
@@ -0,0 +1,14 @@
public class DelegateGenerics<T> {
@lombok.experimental.Delegate
I1<T> target;
}
interface I1<T> extends I2<T, Integer, String> {
}
interface I2<A, T, I> extends I3<Integer, I, A> {
}
interface I3<T, I, A> {
public T t(T t);
public I i(I a);
public A a(A a);
}