[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-anon-147.cs
blobff84acea191e7cb9fc3a28eff5693a5c4338c0fc
1 using System;
3 static class C
5 public static Func<T1, Func<T2, Action<T3>>> Curry<T1, T2, T3> (this Action<T1, T2, T3> self)
7 return value1 => value2 => value3 => self (value1, value2, value3);
11 class Test
13 public static int Main ()
15 Action<int, int, int> test = (x, y, z) => {
16 int i = x + y + z;
17 Console.WriteLine (i);
18 if (i != 19)
19 throw null;
21 Func<int, Func<int, Action<int>>> f = test.Curry ();
23 f (3) (5) (11);
25 return 0;