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

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

class Test
{
	void test ()
	{
		IFoo f = null;
		int v = f.Prop;
		f.NestedProp = 4;		
	}
	
	public static void Main ()
	{
    }
}