[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1502-4.cs
1 // CS1502: The best overloaded method match for `X.X(int)' has some invalid arguments
2 // Line: 14
3
4 public class X {
5
6         public X (int a)
7         {
8         }
9 }
10
11 class D {
12         static void Main ()
13         {
14                 X x = new X ("hola");
15         }
16 }
17