merged Sys.Web.Services 2.0 support in my branch:
[mono.git] / mcs / errors / cs0400.cs
1 // cs0400.cs: The type or namespace name `N' could not be found in the global namespace (are you missing an assembly reference?)\r
2 // Line: 8\r
3 \r
4 class C\r
5 {\r
6         public static void Main()\r
7         {\r
8                 global::N n = null;\r
9         }\r
10 }