linux-packaging-mono/mcs/tests/test-anon-113.cs

19 lines
325 B
C#
Raw Permalink Normal View History

using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
class X
{
public delegate T ModuleBinder<T> (object o);
public ModuleBinder<TDelegate> CreateMethodUnscoped<TDelegate> ()
{
return delegate (object o) {
return (TDelegate)(object)null;
};
}
public static void Main ()
{ }
}