[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-lambda-34.cs
blob97093e63747aae52d5b161c9c3ab52917306003e
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
5 class Program
7 static void Main ()
9 SomeMethod ();
12 private static bool SomeMethod ()
14 int m;
15 int n = 2;
16 bool b_const = true;
18 bool b = F (() => F1 (n, out m) && Ferror (m)) && b_const;
19 return b;
22 protected static bool F (Func<bool> rule)
24 return true;
27 private static bool F1 (int j, out int m)
29 m = 2;
31 return true;
34 private static bool Ferror (int i)
36 return true;
39 private static bool Fouter ()
41 return true;