[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0221-9.cs
index 91139cbf647dfc57f29433d521d47b966aa6dde2..4814058bf0d50a09ed57c095a32e5f9084ef20e8 100644 (file)
@@ -1,9 +1,9 @@
-// cs0221-9.cs: Constant value `3.402823E+38' cannot be converted to a `ulong' (use `unchecked' syntax to override)
+// CS0221: Constant value `3.402823E+38' cannot be converted to a `ulong' (use `unchecked' syntax to override)
 // Line: 6
 
 class X {
-       static void Main () {\r
-               const float d = float.MaxValue;\r
-               ulong b = (ulong) d;\r
+       static void Main () {
+               const float d = float.MaxValue;
+               ulong b = (ulong) d;
        }
 }