mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
don't loose type parameter bounds during super substitution (IDEA-175471)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
interface Child<T extends Serializable> extends List<T> {
|
||||
default void m(List<Child<?>> l) {
|
||||
List<? extends List<? extends Serializable>> ll = l;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user