codeowners update
[mono.git] / mcs / errors / cs1739-4.cs
1 // CS1739: The best overloaded method match for `Program.M(int, int, int)' does not contain a parameter named `whatever'
2 // Line: 8
3
4 public class Program
5 {
6         public static void Main ()
7         {
8                 M (z: 1, whatever: 0);
9         }
10
11         void M (int x = 0, int y = 0, int z = 0)
12         {
13         }
14 }