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

cs0122-9.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76febf7f40ee70f70134606f82a24f3062f0680e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public class X {
	private int a {
		get {
			return 1;
		}
	}
}

internal class Y : X {

	int D (X x)
	{
		if (x.a == 2)
			return 0;
		return 0;
	}

	static void Main ()
	{
	}
}