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

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

using System;

public class C : A
{
	public static void Main ()
	{
		new C ().Test ();
	}
	
	void Test ()
	{
		var a = new C ();
		Console.WriteLine (a.Prop);
		a [5] = "2";
	}
}