[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs0037-9.cs
1 // CS0037: Cannot convert null to `int' because it is a value type
2 // Line: 6
3
4 class C
5 {
6         int [,] i = new int [2,null] { { 1 }, { 2 } };
7 }
8