Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0234-2.cs
1 // CS0234: The type or namespace name `Enum' does not exist in the namespace `A.B.System'. Are you missing an assembly reference?
2 // Line: 8
3
4 using System;
5 namespace A.B.System {
6         public class Test { 
7                 public static void Main () {
8                         Console.WriteLine (typeof (System.Enum));
9                 } 
10         } 
11 }