[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs0019-21.cs
index 795a44fd3bf2d80a9efabdc21e7ec4956548ca19..8deee1fa55d830b71e9f9ceb1d80aa0906202e8f 100644 (file)
@@ -1,13 +1,13 @@
-// CS0019: Operator `+' cannot be applied to operands of type `AA' and `uint'\r
-// Line: 11\r
-\r
-enum AA : byte { a, b = 200 }\r
-\r
-public class C\r
-{\r
-       public static void Main ()\r
-       {\r
-               const uint ul = 1;\r
-               AA b = AA.a + ul;\r
-       }\r
-}\r
+// CS0019: Operator `+' cannot be applied to operands of type `AA' and `uint'
+// Line: 11
+
+enum AA : byte { a, b = 200 }
+
+public class C
+{
+       public static void Main ()
+       {
+               const uint ul = 1;
+               AA b = AA.a + ul;
+       }
+}