X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0156.cs;h=eae7b834477bef1762065292fb849922b6351d5b;hb=30cddad5fb4c3d290906a6e6c33ecd8b07d8b48c;hp=8381e33dce4bb0ff87f78abc34555dffee1cae39;hpb=538d3bb80572334c18ae117ea7703406a4a22872;p=mono.git diff --git a/mcs/errors/cs0156.cs b/mcs/errors/cs0156.cs index 8381e33dce4..eae7b834477 100644 --- a/mcs/errors/cs0156.cs +++ b/mcs/errors/cs0156.cs @@ -1,4 +1,4 @@ -// cs0156.cs: A throw statement with no arguments is not allowed outside of a catch clause +// CS0156: A throw statement with no arguments is not allowed outside of a catch clause // Line: 12 using System; @@ -8,7 +8,7 @@ class Foo static void Main () { try { - Console.WriteLine ("Test cs0156"); + Console.WriteLine ("Test CS0156"); throw; } catch {