Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-anon-113.cs
1 using System;
2 using System.Runtime.InteropServices;
3 using System.Collections.Generic;
4
5 class X
6 {
7         public delegate T ModuleBinder<T> (object o);
8
9         public ModuleBinder<TDelegate> CreateMethodUnscoped<TDelegate> ()
10         {
11                 return delegate (object o) {
12                         return (TDelegate)(object)null;
13                 };
14         }
15
16         public static void Main ()
17         { }
18 }