a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
27 lines
357 B
C#
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;
|
|
}
|
|
}
|