summaryrefslogtreecommitdiff
path: root/mcs/tests/test-371.cs
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)
	{ }
}