[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-686.cs
blob69fda793994dd895b96a7daa72d935c9ec6ddc1d
1 using System;
3 class Test
5 public 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]);