Merge pull request #820 from brendanzagaeski/master
[mono.git] / mcs / errors / cs0133-2.cs
index 7b438bb9ac48cfa06a23ba7ce7d8eb074b41dddf..b7a37182d737cea238b6e7c7af0ba96570e04eab 100644 (file)
@@ -1,12 +1,12 @@
-// CS0133: The expression being assigned to `c' must be constant\r
-// Line: 10\r
-\r
-class C\r
-{\r
-       void Foo ()\r
-       {\r
-               int[] array;\r
-               int idx;\r
-               const int c = array [idx];\r
-       }\r
-}\r
+// CS0133: The expression being assigned to `c' must be constant
+// Line: 10
+
+class C
+{
+       void Foo ()
+       {
+               int[] array;
+               int idx;
+               const int c = array [idx];
+       }
+}