[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0221-7.cs
index a061e603f778db568264eaf6acdd905e12da9dd2..0ce1bb0cc8cba68e9b110453bcb414c2e27d42ce 100644 (file)
@@ -1,8 +1,8 @@
-// cs0221-7.cs: Constant value `-Infinity' cannot be converted to a `ushort' (use `unchecked' syntax to override)
+// CS0221: Constant value `-Infinity' cannot be converted to a `ushort' (use `unchecked' syntax to override)
 // Line: 6
 
 class X {
-       static void Main () {\r
-               System.Console.WriteLine ((ushort)double.NegativeInfinity);\r
+       static void Main () {
+               System.Console.WriteLine ((ushort)double.NegativeInfinity);
        }
 }