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

test-658.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 484aa0b63ff026800fe56c097b1c67c7ecd1712b (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
25
26
class A
{
	private int Thread
	{
		get
		{
			return 0;
		}
	}
}

class Thread
{
	public static void Foo ()
	{
	}
}

class B : A
{
	public static void Main ()
	{
		Thread.Foo ();
	}
}