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

cs0122-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e19867e93507419e0db1b6481f7104026b5f44d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
interface r {
	A.B aaa ();
}

class A {
	enum B {
		D
	}
}

class B {
	static void Main ()
	{
		A.B x = A.B.D;
	}
}