Review feedback + drop VS2013 support.
[mono.git] / mcs / errors / cs0221-8.cs
index 60f6bc9ac1dc7059f4ac1d111fef52bec81b5207..0bed9326fe9b26fed8de8e5ef46efd7958817426 100644 (file)
@@ -1,8 +1,8 @@
-// cs0221-8.cs: Constant value `Infinity' cannot be converted to a `uint' (use `unchecked' syntax to override)
+// CS0221: Constant value `Infinity' cannot be converted to a `uint' (use `unchecked' syntax to override)
 // Line: 6
 
 class X {
-       static void Main () {\r
-               System.Console.WriteLine ((uint)double.PositiveInfinity);\r
+       static void Main () {
+               System.Console.WriteLine ((uint)double.PositiveInfinity);
        }
 }