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

test-268.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95c52e89b6b09101dda13a216aaf6ea8b8195022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public enum MyEnum { V = 1 }

class X {
	public MyEnum MyEnum;	
	class Nested {
		internal MyEnum D () { 
			return MyEnum.V; 
		}
	}
	
	public static int Main () {
		Nested n = new Nested ();
		return n.D() == MyEnum.V ? 0 : 1;
	}
}