2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0037-5.cs
blob27941132b29348fc4d36d986b2e1dc4bdc371588
1 // cs0037-5.cs: Cannot convert null to `int' because it is a value type
2 // Line: 6
4 class C
6 object [,] i = new int [2,1] { { null }, { 2 } };