2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1739.cs
blobb58074a391ea39365881bce7319e81ca2556d23f
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
5 class C
7 static void Foo (int x, int y)
11 public static void Main ()
13 Foo (1, b : 2);