X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0535-4.cs;h=ec6e598682892284f0d474992943349914f3468c;hb=cd277c2a7bfbb7487af4412b7af559866bc8ec68;hp=3de6103168cba7fdd64322132b3133a8156bd45a;hpb=538d3bb80572334c18ae117ea7703406a4a22872;p=mono.git diff --git a/mcs/errors/cs0535-4.cs b/mcs/errors/cs0535-4.cs index 3de6103168c..ec6e5986828 100644 --- a/mcs/errors/cs0535-4.cs +++ b/mcs/errors/cs0535-4.cs @@ -1,18 +1,18 @@ -// cs0535-4.cs: `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 { +// 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