codeowners update
[mono.git] / mcs / tests / gtest-optional-31.cs
1 using System;
2
3 class Test
4 {
5         public static int M (bool b = false)
6         {
7                 Console.WriteLine ("PASS");
8                 return 0;
9         }
10
11         public static int M (params string[] args)
12         {
13                 Console.WriteLine ("FAIL");
14                 return 1;
15         }
16         
17         public static int Main ()
18         {
19                 return M ();
20         }
21 }