[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-anon-113.cs
blob6efd170dd5bccf6b498a6155b146ec0a216816ea
1 using System;
2 using System.Runtime.InteropServices;
3 using System.Collections.Generic;
5 class X
7 public delegate T ModuleBinder<T> (object o);
9 public ModuleBinder<TDelegate> CreateMethodUnscoped<TDelegate> ()
11 return delegate (object o) {
12 return (TDelegate)(object)null;
16 public static void Main ()
17 { }