Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-207.cs
1 // Note that this test actually checks if we compiled mscorlib.dll properly.
2
3 class M {
4   static void p (string x) {
5     System.Console.WriteLine (x);
6   }
7
8   public static void Main () {
9     string[] arr = new string[] { "a", "b", "c" };
10     System.Array.ForEach (arr, p);
11   }
12 }