testdata for IDEA-57509

This commit is contained in:
anna
2012-10-23 21:08:38 +02:00
parent 4d9b38d370
commit faca3a20d6
2 changed files with 10 additions and 0 deletions
@@ -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);
}
}