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: b88ee1fa44b70b1ce14ca9519956281801a31fc6 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0673: System.Void cannot be used from C#. Consider using `void'
// Line: 8

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