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

cs1536.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1305beabead48b0282eb7b71353b22b5ad9f9b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1536: Invalid parameter type 'void'
// Line: 7
using System;

class X
{
	void Test (void a)
	{ }

	static void Main ()
	{
	}
}