mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
9 lines
206 B
Java
9 lines
206 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);
|
|
}
|
|
} |