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

cs0540.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a41e144c9fa5be9c7bab477d365ae7e6fa1325df (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0540.cs: `B.A.B()': containing type does not implement interface `A'
// Line:

interface A {
}

class B {
	void A.B () {}

	static void Main () {}
}