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

bug7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fcd35bc6cdb3850de4df84067c46e71a495630b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public enum X :byte {
	a, b
}

public class Y {

	const X myconst = X.a;

	static void Main ()
	{
	}
}