Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

27 lines
357 B
C#

using System;
abstract class Base
{
internal static T EndExecute<T> (object source, string method) where T : Base
{
return null;
}
}
class Derived : Base
{
internal static Derived EndExecute<TElement> (object source)
{
return null;
}
}
class a
{
public static int Main ()
{
Derived.EndExecute<Derived> (null, "something");
return 0;
}
}