summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1031-2.cs
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);
	}
}