Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0657-21.cs
index 317e7be0bf563f5d62923bc7d0cc38b8087b6a92..3442a1170264e7a07ba962d37f01f3eb8337c820 100644 (file)
@@ -1,12 +1,13 @@
-// cs0657-21.cs: `return' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `method'\r
-// Line : 9\r
-\r
-using System;\r
-\r
-public class C\r
-{\r
-       [return: CLSCompliant (false)]\r
-       public C ()\r
-       {\r
-       }\r
-}\r
+// CS0657: `return' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `method'. All attributes in this section will be ignored
+// Line: 9
+// Compiler options: -warnaserror
+
+using System;
+
+public class C
+{
+       [return: CLSCompliant (false)]
+       public C ()
+       {
+       }
+}