Merge pull request #3686 from lambdageek/dev-format-printf
[mono.git] / mcs / errors / cs0028-2.cs
index 8f57c2f430cd6783a640d2505bb7e33d0eabae9d..7ac43ca26bf681afc1d2cbcbbbbee80651dca2fa 100644 (file)
@@ -1,10 +1,10 @@
-// cs0028-2.cs: `T.Main()' has the wrong signature to be an entry point
+// CS0028: `T.Main()' has the wrong signature to be an entry point
 // Line: 6
-// Compiler options: -warnaserror -warn:4
+// Compiler options: -warnaserror:28 -warn:4
 
 class T {
         public static bool Main ()
-        {\r
+        {
             return false;
         }
 }