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

cs0038-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09337158b1356b9bbc18a431d59b872ae75207e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS0038: Cannot access nonstatic member `MyEnum' of outer type `X' via nested type `X+Nested'
// Line: 9
public enum MyEnum { V = 1 }

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