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

cs0819.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 860f119c58bb985e277dffcb5c19d3b2df133bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0819: An implicitly typed local variable declaration cannot include multiple declarators
// Line: 9


public class Test
{
	static void Main ()
	{
		var v = "foo", w = "bar";
	}
}