[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1502-17.cs
1 // CS1502: The best overloaded method match for `Foo.Test(int, string)' has some invalid arguments
2 // Line: 14
3
4 using System.Runtime.CompilerServices;
5
6 public class Foo
7 {
8         public void Test (int arg, [CallerMemberName] string s = null)
9         {
10         }
11
12         void X ()
13         {
14                 Test ("");
15         }
16 }