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

test-338.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1860e17b9b8313fcd7c7bb7ff439f29234843fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class X {
	public static void Main() { }
	
	Y Y;
	
	static object z = Y.Z.I;
	static Y.Z fz () {return Y.Z.I; }
}

public class Y {
	public class Z {
		public readonly static Z I = new Z ();
	}
}