[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs1502-17.cs
blobe0235512fff071ddf0d00675af81051c56ba919a
1 // CS1502: The best overloaded method match for `Foo.Test(int, string)' has some invalid arguments
2 // Line: 14
4 using System.Runtime.CompilerServices;
6 public class Foo
8 public void Test (int arg, [CallerMemberName] string s = null)
12 void X ()
14 Test ("");