a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
19 lines
325 B
C#
19 lines
325 B
C#
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 ()
|
|
{ }
|
|
}
|