[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0037-5.cs
1 // CS0037: Cannot convert null to `int' because it is a value type
2 // Line: 6
3
4 class C
5 {
6         object [,] i = new int [2,1] { { null }, { 2 } };
7 }
8