X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0400.cs;h=e279709e45513be6a3807a04f5ecdf6614713870;hb=e946a6cdebde729e1c03ec374184254ab38da184;hp=c6609dad256697a2f27a077e153945763abc3770;hpb=f84f760a1c8a8c0ec6ae16b7f38d14a49d329ad7;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; + } +}