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: 1d4f27754f4f6305f41154972cdd8a5c03525086 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1536: Invalid parameter type `void'
// Line: 8

using System;

class X
{
	void Test (void a)
	{ }
}