Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0037-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27941132b29348fc4d36d986b2e1dc4bdc371588 (plain)
1
2
3
4
5
6
7
8
// cs0037-5.cs: Cannot convert null to `int' because it is a value type
// Line: 6

class C
{
	object [,] i = new int [2,1] { { null }, { 2 } };
}