Merge branch 'master' of github.com:tgiphil/mono
[mono.git] / mcs / errors / cs1739.cs
1 // CS1739: The best overloaded method match for `C.Foo(int, int)' does not contain a parameter named `b'
2 // Line: 12
3 // Compiler options: -langversion:future
4
5 class C
6 {
7         static void Foo (int x, int y)
8         {
9         }
10         
11         public static void Main ()
12         {
13                 Foo (1, b : 2);
14         }
15 }