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);
}
}
@@ -159,6 +159,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testIDEA57563() throws Exception { doTest(false); }
public void testIDEA57275() throws Exception { doTest(false); }
public void testIDEA57533() throws Exception { doTest(false); }
public void testIDEA57509() throws Exception { doTest(false); }
public void testInconvertibleTypes() throws Exception { doTest(false); }
public void testIncompatibleReturnType() throws Exception { doTest(false); }
public void testContinueInferenceAfterFirstRawResult() throws Exception { doTest(false); }