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

cs1962.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
	}
}