One line typo bug which passed unoticed on previous commit.
[mono.git] / mcs / errors / cs0459.cs
index 564a0ac59e63f6872974cb1765d0254e82ea0bb6..93b1a22a7704d75196ce04022ed67740360558b5 100644 (file)
@@ -1,13 +1,13 @@
-// CS0459: Cannot take the address of foreach iteration variable `c'\r
-// Line: 10\r
-// Compiler options: -unsafe\r
-\r
-class C\r
-{\r
-       public static unsafe void Main ()\r
-       {\r
-               foreach (char c in "test") {\r
-                       char* ch = &c;\r
-               }\r
-    }\r
-}\r
+// CS0459: Cannot take the address of foreach iteration variable `c'
+// Line: 10
+// Compiler options: -unsafe
+
+class C
+{
+       public static unsafe void Main ()
+       {
+               foreach (char c in "test") {
+                       char* ch = &c;
+               }
+    }
+}