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

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

public class Test
{
	public static void Main ()
	{
	}
	
	public void TestMethod ()
	{
		SummaryInfo s = GetSummary ();
		s.set_Property (0, null);
	}

	static SummaryInfo GetSummary ()
	{
		return null;
	}
}