summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0234-2.cs
blob: 58230be847251fe5e0aca7fe082d0d0720653060 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0234: The type or namespace name `Enum' does not exist in the namespace `A.B.System'. Are you missing an assembly reference?
// Line: 8

using System;
namespace A.B.System {
	public class Test { 
		public static void Main () {
			Console.WriteLine (typeof (System.Enum));
		} 
	} 
}