Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0535-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3de6103168cba7fdd64322132b3133a8156bd45a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 {
}