2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-anon-13.cs
blob99d55bc821b8bfcf95e1e4146484f8431cd0bbd5
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 static void Main ()
17 { }