Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / gtest-546.cs
blob7e31531c8c8fa01e51fc31dcd8af4661a4cb827d
1 using System;
3 class Factory
5 public class S<G1, G2>
9 public static S<F1, F2> Create<F1, F2> (F1 f1, F2 f2)
11 return null;
15 class A
17 static TR Test<T1, T2, TR>(T1 t1, T2 t2, Func<T1, T2, TR> f)
19 return f (t1, t2);
22 static void Main ()
24 var r = Test ("a", "b", Factory.Create);