X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0400.cs;h=e279709e45513be6a3807a04f5ecdf6614713870;hb=b9dd48c9c44bbc9c057aee9bd834de7966ae8565;hp=c6609dad256697a2f27a077e153945763abc3770;hpb=a3ea7ceb4d4f5e2cb8ea421313e8939640fb898c;p=mono.git diff --git a/mcs/errors/cs0400.cs b/mcs/errors/cs0400.cs index c6609dad256..e279709e455 100644 --- a/mcs/errors/cs0400.cs +++ b/mcs/errors/cs0400.cs @@ -1,10 +1,10 @@ -// cs0400.cs: The type or namespace name `N' could not be found in the global namespace (are you missing an assembly reference?) -// Line: 8 - -class C -{ - public static void Main() - { - global::N n = null; - } -} \ No newline at end of file +// CS0400: The type or namespace name `N' could not be found in the global namespace. Are you missing an assembly reference? +// Line: 8 + +class C +{ + public static void Main() + { + global::N n = null; + } +}