Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / gtest-optional-14.cs
blobde7f1d6ca6c22f914424d699d050185857fcd8e6
1 class A
3 public int GetValues (string[] s, string value = null)
5 return 1;
8 public int GetValues (string s, params string [] args)
10 return 2;
15 class B
17 public static int Main ()
19 var a = new A ();
20 if (a.GetValues (null) != 1)
21 return 1;
23 return 0;