[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0156.cs
index 8381e33dce4bb0ff87f78abc34555dffee1cae39..eae7b834477bef1762065292fb849922b6351d5b 100644 (file)
@@ -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 {