2007-10-27 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / errors / cs0127.cs
index 6f77acde8672846fbaa9556ac78b49a2644a1806..77e7224fec8f7acc7ebf96ea9697d637ae008fab 100644 (file)
@@ -1,8 +1,10 @@
-// cs0127.cs: Since `X.fn()' returns void, a return keyword must not be followed by an object expression
+// CS0127: `X.fn()': A return keyword must not be followed by any expression when method returns void
 // Line: 6
+
 class X {
        void fn ()
        {
                return 1;
        }
 }
+