summaryrefslogtreecommitdiff
path: root/mcs/tests/test-891.cs
blob: c6b51401e06976e941fab388ffc6612ac4497cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
interface I
{
	int P { get; }
}

class B : I
{
	int I.P { get { return 1; } }
}

class C : B
{
	public int get_P ()
	{
		return 1;
	}

	public static void Main ()
	{
	}
}