testdata for IDEA-57484

This commit is contained in:
anna
2012-10-23 19:11:09 +02:00
parent b40ec2d2d1
commit 7c50a4b1b4
2 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
abstract class C{
abstract <T> T foo(T x, T y);
{
Long s = (Long) foo(1,1L);
}
}

View File

@@ -162,6 +162,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testIDEA57509() throws Exception { doTest(false); }
public void testIDEA57410() throws Exception { doTest(false); }
public void testIDEA57411() throws Exception { doTest(false); }
public void testIDEA57484() 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); }