Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs0559.cs
index 78d8580f10935b3699e6ffcb218506c53ffcf4e1..a48efe69e6efda0bd4e097ed0fdb96b176b5391f 100644 (file)
@@ -1,8 +1,8 @@
-// cs0559.cs: The parameter and return type for ++ or \97 operator must be the containing type\r
-// Line: 5\r
-\r
-class SampleClass {\r
-        public static SampleClass operator ++ (int value) {\r
-                return new SampleClass();\r
-        }\r
-}\r
+// CS0559: The parameter type for ++ or -- operator must be the containing type
+// Line: 5
+
+class SampleClass {
+        public static SampleClass operator ++ (int value) {
+                return new SampleClass();
+        }
+}