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

test-561.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15145381aae1f0c5a617c0b3604c413f83e3b2b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
abstract class A : I
{
	protected abstract void M ();
		
	void I.M ()
	{
	}
}

interface I
{
	void M ();
}

class C : A, I
{
	protected override void M ()
	{
	}
	
	public static void Main ()
	{
	}
}