testdata for IDEA-57378

This commit is contained in:
anna
2012-10-23 18:07:11 +02:00
parent c97457bb07
commit 899d3e6d6b
2 changed files with 10 additions and 0 deletions
@@ -0,0 +1,9 @@
interface IA {
<T extends Cloneable & Iterable> void foo(T x);
<T extends Iterable & Cloneable> void foo(T x);
}
abstract class A<T extends Throwable> {
abstract <T extends Comparable<?> & Iterable> void foo(T x, A<?> y);
abstract <T extends Iterable & Comparable<?>> void foo(T x, A<? extends Throwable> y);
}
@@ -154,6 +154,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testIDEA57668() throws Exception { doTest(false); }
public void testIDEA57667() throws Exception { doTest(false); }
public void testIDEA57650() throws Exception { doTest(false); }
public void testIDEA57378() 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); }