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

cs0539.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9bf22fc40f8cc595ff21dcb6c6ef39ad80f17f0 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0539.cs: Member in explicit interface declaration is not a member of the interface
// Line:

interface A {
}

class X : A {
	void A.B () {}
	static void Main () {}
}