testdata for IDEA-57484

This commit is contained in:
anna
2012-10-23 21:08:40 +02:00
parent b40ec2d2d1
commit 7c50a4b1b4
2 changed files with 8 additions and 0 deletions
@@ -0,0 +1,7 @@
abstract class C{
abstract <T> T foo(T x, T y);
{
Long s = (Long) foo(1,1L);
}
}