2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1501-4.cs
blobf16382af384dfbec553cab61a194b8878f8ee0f8
1 // CS1501: No overload for method `Foo' takes `3' arguments
2 // Line: 12
4 class Test
6 public static void Foo (string s = null, int value = 2)
10 static void Main ()
12 Foo ("a", 2, 6);