testdata for IDEA-57275

This commit is contained in:
anna
2012-10-23 17:57:04 +02:00
parent 69b98caa39
commit eccf567a5b
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
abstract class A {
abstract <S, T extends Iterable<S>> void foo();
{
foo();
}
}
class X{
<T extends Enum<T>> void foo(){
foo();
}
}

View File

@@ -157,6 +157,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testIDEA57378() throws Exception { doTest(false); }
public void testIDEA57557() throws Exception { doTest(false); }
public void testIDEA57563() throws Exception { doTest(false); }
public void testIDEA57275() 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); }