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

test-98.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17842abe4071dc24df2542e9d8cf17a8c139e7e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class X {
	int a;
	Y x;
	
	void b ()
	{
		if (x.a == 1)
			return;
	}
}

class Y : X {

	public static int Main ()
	{
		return 0;
	}
}