[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0037-9.cs
bloba039cba3e3b44ed4c9fa6bbe08aabd8fdeb4589c
1 // CS0037: Cannot convert null to `int' because it is a value type
2 // Line: 6
4 class C
6 int [,] i = new int [2,null] { { 1 }, { 2 } };