[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0400.cs
1 // CS0400: The type or namespace name `N' could not be found in the global namespace. Are you missing an assembly reference?
2 // Line: 8
3
4 class C
5 {
6         public static void Main()
7         {
8                 global::N n = null;
9         }
10 }