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

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

class Test
{
	public static int Main ()
	{
		var a = new A ();
		if (a.Prop != 1)
			return 1;
		
		return 0;
	}
}