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

test-667.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd498cb98262eed7a470f16d64a03ff9d807e5bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface IA
{
	void M ();
}

class CA : IA
{
	void IA.M ()
	{
	}
}

class CC : CA, IA
{
	public static void Main ()
	{
	}
}