[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0234-2.cs
blob58230be847251fe5e0aca7fe082d0d0720653060
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
4 using System;
5 namespace A.B.System {
6 public class Test {
7 public static void Main () {
8 Console.WriteLine (typeof (System.Enum));
9 }