Fix loading of documentation XML fragments to use source file and not process path
[mono.git] / mcs / errors / cs0037-6.cs
index c9477420e3cb66e65f7c355d4e0220ccc4b0e566..6e550a45cbf1c144612b0dd32b43eec47cd78c66 100644 (file)
@@ -1,15 +1,15 @@
-// cs0037.cs: Cannot convert null to `bool' because it is a value type\r
-// Line: 13\r
-\r
-using System;\r
-\r
-public sealed class BoundAttribute : System.Attribute\r
-{\r
-       public bool Dec { set { } get { return false; } }\r
-}\r
-\r
-class C\r
-{\r
-       [Bound (Dec = null)]\r
-       double d2;\r
+// CS0037: Cannot convert null to `bool' because it is a value type
+// Line: 13
+
+using System;
+
+public sealed class BoundAttribute : System.Attribute
+{
+       public bool Dec { set { } get { return false; } }
+}
+
+class C
+{
+       [Bound (Dec = null)]
+       double d2;
 }
\ No newline at end of file