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

cs0673.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e59d498fbf7f1f30911dd7b3b1a0843c347b2b1 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0673.cs: System.Void cannot be used from C# -- use typeof (void) to get the void type object.
// Line: 8

public class X
{
	public static void Main()
	{
		System.Type t = typeof (System.Void);
	}
}