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: 7bb8931db32c6b7dc9a111600ce90edf821d681c (plain)
1
2
3
4
5
6
7
8
9
10
// cs0539.cs: `A.B' in explicit interface declaration is not a member of interface
// Line:

interface A {
}

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