mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
10 lines
207 B
Java
10 lines
207 B
Java
import java.util.List;
|
|
|
|
abstract class X {
|
|
abstract <T> void copy(List<T> dest, List<? extends T> src);
|
|
|
|
void foo(List<? super Throwable> x, List<? extends Exception> y){
|
|
copy(x, y);
|
|
}
|
|
}
|