[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0037-5.cs
blob64153c19cbf2de929dacf195cd00174df81207d6
1 // CS0037: 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 } };