Refactor preprocessor parsing to use less string operations.
[mono.git] / mcs / errors / cs0283-2.cs
index 5101b111b3e5d755e0221f78dabd39ce84bbd706..11098ff6a88c09cdf71604e773fa479b0c750802 100644 (file)
@@ -1,14 +1,14 @@
-// cs0283-2.cs: The type `S' cannot be declared const\r
-// Line: 12\r
-\r
-struct S\r
-{\r
-}\r
-\r
-class C\r
-{\r
-       public void Foo ()\r
-       {\r
-               const S s = new S();\r
-       }\r
+// cs0283-2.cs: The type `S' cannot be declared const
+// Line: 12
+
+struct S
+{
+}
+
+class C
+{
+       public void Foo ()
+       {
+               const S s = new S();
+       }
 }
\ No newline at end of file