quote only work on lambda on net_4_0
[mcs.git] / errors / cs0535-4.cs
blob3de6103168cba7fdd64322132b3133a8156bd45a
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 {