[msvc] Update csproj files
[mono.git] / mcs / errors / cs0535-4.cs
index 3de6103168cba7fdd64322132b3133a8156bd45a..ec6e598682892284f0d474992943349914f3468c 100644 (file)
@@ -1,18 +1,18 @@
-// cs0535-4.cs: `B' does not implement interface member `ITest2.GetName(string)'\r
-// Line: 17\r
-\r
-public interface ITest1 {\r
-       void GetName(string id);\r
-}\r
-\r
-public interface ITest2 {\r
-       void GetName(string id);\r
-}\r
-\r
-public class A : ITest1 {\r
-       void ITest1.GetName(string id) {\r
-       }\r
-}\r
-\r
-public class B : A, ITest2 {\r
+// CS0535: `B' does not implement interface member `ITest2.GetName(string)'
+// Line: 17
+
+public interface ITest1 {
+       void GetName(string id);
+}
+
+public interface ITest2 {
+       void GetName(string id);
+}
+
+public class A : ITest1 {
+       void ITest1.GetName(string id) {
+       }
+}
+
+public class B : A, ITest2 {
 }
\ No newline at end of file