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

cs0623.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb10dd6d14562e2b43a836e1bc462b421b96c7e7 (plain)
1
2
3
4
5
6
7
8
// cs0623.cs: Array initializers can only be used in a variable or field initializer. Try using a new expression instead
// Line: 7

class C
{
	public int[] a = { 2, {1} };
}