summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0535-4.cs
blob: ec6e598682892284f0d474992943349914f3468c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 {
}