Hi,
I am trying to write something like
public class A implements B<T implements C> {}
and
public abstract class M<I extends P> extends R<I extends P> implements Q<I extends P> {}
but I am getting errors like Multiple markers and syntax error on token extends, expected. Please let me know what is the correct way of doing this.