[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0535-4.cs
1 // CS0535: `B' does not implement interface member `ITest2.GetName(string)'
2 // Line: 17
3
4 public interface ITest1 {
5         void GetName(string id);
6 }
7
8 public interface ITest2 {
9         void GetName(string id);
10 }
11
12 public class A : ITest1 {
13         void ITest1.GetName(string id) {
14         }
15 }
16
17 public class B : A, ITest2 {
18 }