codeowners update
[mono.git] / mcs / errors / cs1501-5.cs
1 // CS1501: No overload for method `Foo' takes `1' arguments
2 // Line: 12
3
4 public class Test
5 {
6         static void Foo (int a, int b = 1, int c = 2)
7         {
8         }
9         
10         public static void Main ()
11         {
12                 Foo (c : -1);
13         }
14 }
15