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

test-699.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f98f2e9190b43dcb2e59d52f16eca3045b10c29d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Compiler options: -r:test-699-lib.dll

public class D : C
{
	string _message = "";

	public D (string msg)
	{
		_message = msg;
	}

	public string message
	{
		get { return _message; }
	}

	public static void Main ()
	{
	}
}