codeowners update
[mono.git] / mcs / tests / test-686.cs
1 using System;
2
3 class Test
4 {
5         public static void Main ()
6         {
7                 string s = "test me";
8                 foreach (char c in s)
9                         Console.WriteLine (c);
10
11                 Foo ();
12         }
13
14         static void Foo ()
15         {
16                 string [,] s = new string [,] { { "a", "b" }, { "c", "d" } };
17                 foreach (string c in s)
18                         Console.WriteLine (c [0]);
19         }
20 }