summaryrefslogtreecommitdiff
path: root/mcs/tests/test-667.cs
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 ()
	{
	}
}