Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0571.cs
index 1b719f10f0495a354a82e97814d06cb28c678778..6b58089fdba257bde31f02ad7d7c172e90c67f94 100644 (file)
@@ -1,14 +1,14 @@
-// cs0571.cs: 'MainClass.Value.get' : cannot explicitly call operator or accessor\r
-// Line: 12\r
-\r
-class MainClass {\r
-        static int Value {\r
-                get {\r
-                        return 1;\r
-                }\r
-        }\r
-        \r
-        public static void Main() {\r
-                int value = get_Value();\r
-        }\r
-}\r
+// CS0571: `MainClass.Value.get': cannot explicitly call operator or accessor
+// Line: 12
+
+class MainClass {
+        static int Value {
+                get {
+                        return 1;
+                }
+        }
+        
+        public static void Main() {
+                int value = get_Value();
+        }
+}