[xbuild] Add new reserved properties $(MSBuildThisFile*).
[mono.git] / mcs / errors / cs0019-22.cs
index ee5632f20a7e499acd14b09b708932ac723fab88..38f13a3d9af6fc7e9de83b5120e149a78494da33 100644 (file)
@@ -1,13 +1,13 @@
 // CS0019: Operator `-' cannot be applied to operands of type `AA' and `long'
-// Line: 11\r
-\r
-enum AA : short { a, b = 200 }\r
-\r
-public class C\r
-{\r
-       public static void Main ()\r
-       {\r
-               const long ul = 1;\r
-               const AA b = AA.a - ul;\r
-       }\r
-}
\ No newline at end of file
+// Line: 11
+
+enum AA : short { a, b = 200 }
+
+public class C
+{
+       public static void Main ()
+       {
+               const long ul = 1;
+               AA b = AA.a - ul;
+       }
+}