Merge pull request #3586 from henricm/fix-win-uri-tests
[mono.git] / mcs / errors / cs0551.cs
index 38884615f6131181c861f1a617b240c29ce44e19..036d2e35e29e44c4d0c63a6a65f680f53e2d1127 100644 (file)
@@ -1,16 +1,16 @@
-// cs0551.cs: Explicit interface implementation 'PropertyClass.PropertyInterface.Value' is missing accessor 'PropertyInterface.Value.set'\r
-// Line: 9\r
-\r
-interface PropertyInterface {\r
-        int Value { get; set; }\r
-}\r
-\r
-public class PropertyClass: PropertyInterface {\r
-        int PropertyInterface.Value { \r
-                get { \r
-                        return 0;\r
-                } \r
-        }\r
-}\r
-\r
-\r
+// CS0551: Explicit interface implementation `PropertyClass.PropertyInterface.Value' is missing accessor `PropertyInterface.Value.set'
+// Line: 9
+
+interface PropertyInterface {
+        int Value { get; set; }
+}
+
+public class PropertyClass: PropertyInterface {
+        int PropertyInterface.Value { 
+                get { 
+                        return 0;
+                } 
+        }
+}
+
+