2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-207.cs
bloba718af57290a98719d9ff1b4887a187243f73132
1 // Note that this test actually checks if we compiled mscorlib.dll properly.
3 class M {
4 static void p (string x) {
5 System.Console.WriteLine (x);
8 static void Main () {
9 string[] arr = new string[] { "a", "b", "c" };
10 System.Array.ForEach (arr, p);