[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-decl-expr-05.cs
blob907cde0b8d7d8666d76b356908e5dff87765e83c
1 class X
3 void Test (string arg)
5 while (Call (out string s))
7 arg = s.ToString ();
10 while (true && Call (out string s2))
12 arg = s2.ToString ();
16 static bool Call (out string s)
18 s = "";
19 return true;
22 public static void Main ()
24 Call (out string s);