[Tests] Fix Mono.Data.Tds tests on iOS (#5501)
[mono.git] / mcs / errors / cs1501-4.cs
1 // CS1501: No overload for method `Foo' takes `3' arguments
2 // Line: 12
3
4 class Test
5 {
6         public static void Foo (string s = null, int value = 2)
7         {
8         }
9
10         static void Main ()
11         {
12                 Foo ("a", 2, 6);
13         }
14 }