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: 6ced8486fbe9402a25600d12ea1f2c067d4e1b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0106: The modifier `public' is not valid for this item
// Line: 8
interface A {
	void B ();
}

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

	static void Main () {}
}