2005-06-13 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / tests / test-319-exe.cs
index 6ec1b499af25584cf301dcc64c322a5e52dbb41a..34c91371a4022b60202b8f15263f601a8c3142c4 100644 (file)
@@ -16,7 +16,7 @@ public class ConstFields
         // TODO: check this value
        static readonly Decimal MaxValueDiv10 = MaxValue / 10;
             
-        static decimal DecimalValue = -90;\r
+        static decimal DecimalValue = -90;
         const decimal SmallConstValue = .02M;
             
         static int Main ()
@@ -31,9 +31,9 @@ public class ConstFields
                 return 2;
             
             if (ConstDecimal1 != (-1) * ConstDecimal2)
-                return 3;\r
-            \r
-            if (!(SmallConstValue < 1 && SmallConstValue > 0))\r
+                return 3;
+            
+            if (!(SmallConstValue < 1 && SmallConstValue > 0))
                 return 4;
 
             // THIS IS TEST TOO