codeowners update
[mono.git] / mcs / tests / test-decl-expr-05.cs
1 class X
2 {
3         void Test (string arg)
4         {
5                 while (Call (out string s))
6                 {
7                         arg = s.ToString ();
8                 }
9         }
10
11         static bool Call (out string s)
12         {
13                 s = "";
14                 return true;
15         }
16
17         public static void Main ()
18         {
19                 Call (out string s);
20         }
21 }