[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-396.cs
blob352bb1ac786bc4157a9b4afed1d73dc99be96f1a
1 using System;
3 public class Test
5 public static void Invoke<A, TR>(Func<A, Func<TR>> callee, A arg1, TR result)
9 static Func<int> Method (string arg)
11 return null;
14 public static void Main()
16 Invoke(Method, "one", 1);