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

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

using System;

class Test
{
	public static int Main ()
	{
		B b = new B ();
		b.Prop = 1;
		int a = b.Prop;
		return 0;
	}
}