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: 71d420d8d2355d0abd1a127e546af72c51178eef (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);
	}
}