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

test-371.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 052c5f352a8f1f118f90b2db01a0b4f0f4ca9d3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class X
{
	public X (out bool hello)
	{
		hello = true;
	}

	public static void Main ()
	{ }
}

public class Y : X
{
	public Y (out bool hello)
		: base (out hello)
	{ }
}