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

cs1031.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28f11a17660bee8e1b90ccf841769649da252a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1031: Type expected
// Line: 8

using System;

class M
{
	public static void Main ()
	{
		Type t = typeof (this);
	}
}