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

test-605.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 600695d6233e013bfc976648b98b50506a9c6b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class TestA
{
	public virtual string Method
	{
		get { return null; }
	}
}

class TestB : TestA
{
	private string Method
	{
		get { return null; }
	}

	public static void Main ()
	{
	}
}