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

cs0543.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f5987c44d26deb574d2bc7013dfa45deabb1319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0543.cs: The enumerator value `Blah.MyEnum.Bar' is too large to fit in its type `byte'
// Line : 9

public class Blah {

	public enum MyEnum : byte {
		Foo = 255,
		Bar
	}

	public static void Main ()
	{
	}
}