blob: 4e2aff70f544b3d9b9df7930b057eb569539900f [file] [log] [blame]
abstract class C{
abstract <T> T foo(T x, T y);
{
Long s = (Long) foo(1,1L);
}
}