2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-686.cs
blob0fde8568a34603e432368db49cffcc31f84db232
1 using System;
3 class Test
5 static void Main ()
7 string s = "test me";
8 foreach (char c in s)
9 Console.WriteLine (c);
11 Foo ();
14 static void Foo ()
16 string [,] s = new string [,] { { "a", "b" }, { "c", "d" } };
17 foreach (string c in s)
18 Console.WriteLine (c [0]);