mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
testdata for IDEA-57509
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user