1 // Note that this test actually checks if we compiled mscorlib.dll properly.
4 static void p (string x
) {
5 System
.Console
.WriteLine (x
);
8 public static void Main () {
9 string[] arr
= new string[] { "a", "b", "c" }
;
10 System
.Array
.ForEach (arr
, p
);