[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-optional-39.cs
1 class A
2 {
3         public int GetValues (string[] s, string value = null)
4         {
5                 return 1;
6         }
7
8         public int GetValues (string s, params string [] args)
9         {
10                 return 2;
11         }
12 }
13
14
15 class B
16 {
17         public static int Main ()
18         {
19                 var a = new A ();
20                 if (a.GetValues (null) != 1)
21                         return 1;
22
23                 return 0;
24         }
25 }