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: 25d5d78ade1807ff2d0cf4219bd1c04435dd829c (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0540.cs: containing class does not implement interface
// Line:

interface A {
}

class B {
	void A.B () {}

	static void Main () {}
}