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

test-886.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1061355a01f1a118e6facc6c6326265615c26033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public class A
{
	public static A Get ()
	{
		return null;
	}
}

public class Test
{
	void M ()
	{
		A A = A.Get ();
	}

	public static void Main ()
	{
		var t = new Test ();
		t.M ();
	}
}