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

cs0106.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22a7dabeb5854e64f34b65441f738094b057a756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0106: virtual, abstract or public are not valid for explicit interface implementations
// Line: 8
interface A {
	void B ();
}

class X : A {
	public virtual void A.B () {}

	static void Main () {}
}