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

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

using System;

class M
{
	public static void Main ()
	{
		B b = new B ();
		b.Prop = 2;
	}
}