Merge pull request #3686 from lambdageek/dev-format-printf
[mono.git] / mcs / errors / cs0664-3.cs
index 3eb26cf8c869d9260301c4b84e03894879232060..e78dcd9150b9e5375d90a835bc64a0d6e9381b65 100644 (file)
@@ -1,15 +1,15 @@
-// cs0664-3.cs: Literal of type double cannot be implicitly converted to type `float'. Add suffix `f' to create a literal of this type\r
-// Line: 13\r
+// CS0664: Literal of type double cannot be implicitly converted to type `float'. Add suffix `f' to create a literal of this type
+// Line: 13
 
-using System;\r
-\r
-public sealed class BoundAttribute : System.Attribute\r
-{\r
-       public float D;\r
-}\r
-\r
-class C\r
-{\r
-       [Bound (D = 300d)]\r
-       double d2;\r
+using System;
+
+public sealed class BoundAttribute : System.Attribute
+{
+       public float D;
+}
+
+class C
+{
+       [Bound (D = 300d)]
+       double d2;
 }
\ No newline at end of file