add ISafeSerializationData
[mcs.git] / tests / gtest-396.cs
blob6d18d6e27ad3f7ab3b52c7561b389be0e61378e3
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 static void Main()
16 Invoke(Method, "one", 1);