2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0535-4.cs
blobaf5e024cb3c2f2d4bdfe38bd6d1634de6d8f6a1c
1 // cs0535-4.cs: `B' does not implement interface member `ITest2.GetName(string)'
2 // Line: 17
4 public interface ITest1 {
5 void GetName(string id);
8 public interface ITest2 {
9 void GetName(string id);
12 public class A : ITest1 {
13 void ITest1.GetName(string id) {
17 public class B : A, ITest2 {