2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0234-2.cs
blob181131acfb70a87c61f3d8b545455fb5984b271f
1 // cs0234-2.cs: The type or namespace name `Enum' does not exist in the namespace `A.B.System'. Are you missing an assembly reference?
2 // Line: 8
4 using System;
5 namespace A.B.System {
6 public class Test {
7 public static void Main () {
8 Console.WriteLine (typeof (System.Enum));
9 }