Merge pull request #4845 from lambdageek/dev-coop-delegates
[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
4 class C
5 {
6         static void Foo (int x, int y)
7         {
8         }
9         
10         public static void Main ()
11         {
12                 Foo (1, b : 2);
13         }
14 }