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

cs0820.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c825cb36bf0b5b52e1d8dc4e3723dc14ad82ed7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0820: An implicitly typed local variable declarator cannot use an array initializer
// Line: 9


public class Test
{
	static void Main ()
	{
		var v = { 0 };
	}
}