mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 09:50:57 +07:00
6 lines
294 B
Java
6 lines
294 B
Java
import java.util.*;
|
|
|
|
interface A<T extends ArrayList<T>> {
|
|
A<<error descr="Type parameter '? extends List<Object>' is not within its bound; should extend 'java.util.ArrayList<? extends java.util.List<java.lang.Object>>'">? extends List<Object></error>> foo();
|
|
A<? extends List<T>> foo1();
|
|
} |