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: b59d0e834f5ceb1c50c0b997143347d7e8565525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs1008.cs : Enumerator value for 'Bar' is too large to fit in its type 
// Line : 9

public class Blah {

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

	public static void Main ()
	{
	}
}