[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-lambda-27.cs
blob08b0e2c469c003efb15e784e31f10b386b39d86c
1 using System;
3 class MainClass
5 public static void Main ()
7 Test1 (l => l.GetItems ());
8 Test2 (l => l.GetItems2 ());
11 static T[] Test1<T> (Func<IB, T[]> arg)
13 return null;
16 static IA<T>[] Test2<T> (Func<IB, IA<T>[]> arg)
18 return null;
22 interface IA<U>
26 interface IB
28 string[] GetItems ();
29 IA<string>[] GetItems2 ();