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

cs8210.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a297dc780829d1073864b96d5550f93151ebfecd (plain)
1
2
3
4
5
6
7
8
9
10
// CS8210: A tuple literal cannot not contain a value of type `void'
// Line: 8

class XX
{
	public static void Main ()
	{
		var m = (1, Main ());
	}
}