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

test-215.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 073d2f4eb112c5640a78bf4a3cec6e93c7cc53a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using C1 = N1.C1;

public class Test {
	private static C1 c1 = null;

	public static C1 C1 {
		get {
			return c1;
		}
	}

	public static int Main() {
		C1 tmp = C1;
		return 0;
	}
}

namespace N1 {
    public class C1 {
    }
}