[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1729-11.cs
1 // CS1729: The type `int' does not contain a constructor that takes `1' arguments
2 // Line: 8
3
4 class C
5 {
6         static void Main ()
7         {
8                 int i = new int(1);
9         }
10 }
11