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

cs0234-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c18c08519c6602b00e5d6d6b4a23c593746294b (plain)
1
2
3
4
5
6
7
8
9
10
11
// error CS0234: The type or namespace name `Enum' could not be found in namespace `A.B.System'
// Line: 8

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