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

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


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