summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1962.cs
blob: 10ea28c327a071aa1d89ec83cc0efef7fbc89494 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1962: The typeof operator cannot be used on the dynamic type
// Line: 8

class C
{
	public static void Main ()
	{
		object t = typeof (dynamic);
	}
}